public interface UITableViewDropDelegate
| Modifier and Type | Method and Description |
|---|---|
default boolean |
tableViewCanHandleDropSession(UITableView tableView,
UIDropSession session)
If NO is returned no further delegate methods will be called for this drop session.
|
default UIDragPreviewParameters |
tableViewDropPreviewParametersForRowAtIndexPath(UITableView tableView,
NSIndexPath indexPath)
Allows customization of the preview used when dropping to a newly inserted row.
|
default void |
tableViewDropSessionDidEnd(UITableView tableView,
UIDropSession session)
Called when the drop session completed, regardless of outcome.
|
default void |
tableViewDropSessionDidEnter(UITableView tableView,
UIDropSession session)
Called when the drop session begins tracking in the table view's coordinate space.
|
default void |
tableViewDropSessionDidExit(UITableView tableView,
UIDropSession session)
Called when the drop session is no longer being tracked inside the table view's coordinate space.
|
default UITableViewDropProposal |
tableViewDropSessionDidUpdateWithDestinationIndexPath(UITableView tableView,
UIDropSession session,
NSIndexPath destinationIndexPath)
Called frequently while the drop session being tracked inside the table view's coordinate space.
|
void |
tableViewPerformDropWithCoordinator(UITableView tableView,
UITableViewDropCoordinator coordinator)
Called when the user initiates the drop.
|
default boolean tableViewCanHandleDropSession(UITableView tableView, UIDropSession session)
default UIDragPreviewParameters tableViewDropPreviewParametersForRowAtIndexPath(UITableView tableView, NSIndexPath indexPath)
default void tableViewDropSessionDidEnd(UITableView tableView, UIDropSession session)
default void tableViewDropSessionDidEnter(UITableView tableView, UIDropSession session)
default void tableViewDropSessionDidExit(UITableView tableView, UIDropSession session)
default UITableViewDropProposal tableViewDropSessionDidUpdateWithDestinationIndexPath(UITableView tableView, UIDropSession session, NSIndexPath destinationIndexPath)
void tableViewPerformDropWithCoordinator(UITableView tableView, UITableViewDropCoordinator coordinator)