UITableViewDropDelegate_Extensions Class

Definition

Extension methods to the IUITableViewDropDelegate interface to support all the methods from the UITableViewDropDelegate protocol.

public static class UITableViewDropDelegate_Extensions
type UITableViewDropDelegate_Extensions = class
Inheritance
UITableViewDropDelegate_Extensions

Remarks

The extension methods for IUITableViewDropDelegate allow developers to treat instances of the interface as having all the optional methods of the original UITableViewDropDelegate protocol. Since the interface only contains the required members, these extension methods allow developers to call the optional members of the protocol.

Methods

CanHandleDropSession(IUITableViewDropDelegate, UITableView, IUIDropSession)

Returns a Boolean value that tells whether the table view can handle drops from the data in the session.

DropSessionDidEnd(IUITableViewDropDelegate, UITableView, IUIDropSession)

Method that is called when the drop session ends.

DropSessionDidEnter(IUITableViewDropDelegate, UITableView, IUIDropSession)

Method that is called when the drop point enters the table view.

DropSessionDidExit(IUITableViewDropDelegate, UITableView, IUIDropSession)

Method that is called when the drop point leaves the table view.

DropSessionDidUpdate(IUITableViewDropDelegate, UITableView, IUIDropSession, NSIndexPath)

Method that is called when the drop point over the table view changes.

GetDropPreviewParameters(IUITableViewDropDelegate, UITableView, NSIndexPath)

Returns the drag preview parameters for the item at the specified index path.

Applies to