- tableView
- Table view containing the row.
- action
- A selector identifying the Copy or Paste method (ie. UIResponder.Copy(Foundation.NSObject) or UIResponder.Paste(Foundation.NSObject)).
- indexPath
- Location of the row where the copy or paste operation was selected.
- sender
- Object that triggered the copy or paste operation.
This method is called when a copy or paste operation is chosen from the editing menu in a table view cell. The implementation may use UIKit.UIPasteboard to write the relevant indexPath row data to share with other applications (or just for use within the current application).
Declared in [UITableViewDelegate]