UITableViewDelegate.PerformAction 方法

定义

调用 以对 指定的 indexPath行执行复制或粘贴操作。

[Foundation.Export("tableView:performAction:forRowAtIndexPath:withSender:")]
public virtual void PerformAction (UIKit.UITableView tableView, ObjCRuntime.Selector action, Foundation.NSIndexPath indexPath, Foundation.NSObject sender);
abstract member PerformAction : UIKit.UITableView * ObjCRuntime.Selector * Foundation.NSIndexPath * Foundation.NSObject -> unit
override this.PerformAction : UIKit.UITableView * ObjCRuntime.Selector * Foundation.NSIndexPath * Foundation.NSObject -> unit

参数

tableView
UITableView

包含行的表视图。

action
Selector

标识 Copy 或 Paste 方法 (ie 的选择器。 Copy(NSObject)Paste(NSObject))。

indexPath
NSIndexPath

选择复制或粘贴操作的行的位置。

sender
NSObject

触发复制或粘贴操作的对象。

属性

注解

当从表视图单元格的编辑菜单中选择复制或粘贴操作时,将调用此方法。 实现可以使用 UIPasteboard 编写相关 indexPath 行数据,以便与其他应用程序共享 (或仅在当前应用程序) 内使用。

适用于