UITableViewSource.AccessoryButtonTapped(UITableView, NSIndexPath) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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]