UITableViewSource.AccessoryButtonTapped(UITableView, NSIndexPath) Method

Definition

Called when the user taps the DetailDisclosureButton accessory on the row located at indexPath.

[Foundation.Export("tableView:accessoryButtonTappedForRowWithIndexPath:")]
public virtual void AccessoryButtonTapped (UIKit.UITableView tableView, Foundation.NSIndexPath indexPath);
abstract member AccessoryButtonTapped : UIKit.UITableView * Foundation.NSIndexPath -> unit
override this.AccessoryButtonTapped : UIKit.UITableView * Foundation.NSIndexPath -> unit

Parameters

tableView
UITableView

The table view containing the row/cell accessory that has been tapped.

indexPath
NSIndexPath

The location of the row in the table view.

Attributes

Remarks

This method should typically display a new view related to the selected row. [UITableViewDelegate]

Applies to