UITableViewDelegate.CellDisplayingEnded Method

Definition

Called when a table row is removed from a UITableView (for example, due to scrolling).

[Foundation.Export("tableView:didEndDisplayingCell:forRowAtIndexPath:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void CellDisplayingEnded (UIKit.UITableView tableView, UIKit.UITableViewCell cell, Foundation.NSIndexPath indexPath);
abstract member CellDisplayingEnded : UIKit.UITableView * UIKit.UITableViewCell * Foundation.NSIndexPath -> unit
override this.CellDisplayingEnded : UIKit.UITableView * UIKit.UITableViewCell * Foundation.NSIndexPath -> unit

Parameters

tableView
UITableView

The UITableView being displayed.

cell
UITableViewCell

The UITableViewCell that has just been removed.

indexPath
NSIndexPath

The NSIndexPath specifying the cell.

Attributes

Remarks

Application developers should use this method, rather than attempting to monitor the cell's visibility directly.

Applies to