IUITableViewDropDelegate 接口

定义

表示所需方法的接口 ((如果协议 UITableViewDropDelegate有任何) )。

[Foundation.Protocol(Name="UITableViewDropDelegate", WrapperType=typeof(UIKit.UITableViewDropDelegateWrapper))]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public interface IUITableViewDropDelegate : IDisposable, ObjCRuntime.INativeObject
type IUITableViewDropDelegate = interface
    interface INativeObject
    interface IDisposable
派生
属性
实现

注解

此接口包含所需的方法 ((如果定义协议 UITableViewDropDelegate有任何) )。

如果开发人员创建实现此接口的类,则实现方法将自动导出到具有协议中 UITableViewDropDelegate 定义的方法的匹配签名的 Objective-C。

如果类提供任何) UITableViewDropDelegate_Extensions 作为接口的扩展方法,则可选方法 (,从而允许开发人员调用协议上的任何可选方法。

属性

Handle

处理指向非托管对象表示形式的 (指针) 。

(继承自 INativeObject)

方法

PerformDrop(UITableView, IUITableViewDropCoordinator)

用于将数据拖放到表视图中的方法。

扩展方法

CanHandleDropSession(IUITableViewDropDelegate, UITableView, IUIDropSession)

返回一个布尔值,该值指示表视图是否可以处理会话中数据的删除。

DropSessionDidEnd(IUITableViewDropDelegate, UITableView, IUIDropSession)

删除会话结束时调用的方法。

DropSessionDidEnter(IUITableViewDropDelegate, UITableView, IUIDropSession)

放置点进入表视图时调用的方法。

DropSessionDidExit(IUITableViewDropDelegate, UITableView, IUIDropSession)

在放置点离开表视图时调用的方法。

DropSessionDidUpdate(IUITableViewDropDelegate, UITableView, IUIDropSession, NSIndexPath)

当表视图上的放置点更改时调用的方法。

GetDropPreviewParameters(IUITableViewDropDelegate, UITableView, NSIndexPath)

返回指定索引路径处项的拖动预览参数。

适用于