UITableViewDelegate.RowDeselected(UITableView, NSIndexPath) Method

Definition

Called when the row specified by indexPath is de-selected.

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

Parameters

tableView
UITableView

Table view containing the row.

indexPath
NSIndexPath

Location of the row that has become de-selected.

Attributes

Remarks

This method can be used to perform any processing required when a row is de-selected, such as removing a Checkmark accessory (if one is being displayed). In such an example, use the RowSelected(UITableView, NSIndexPath) to display the checkmark.

Applies to