UITableViewSource.WillDisplay 方法

定义

在为 指定的 indexPath行呈现单元格之前调用。

[Foundation.Export("tableView:willDisplayCell:forRowAtIndexPath:")]
public virtual void WillDisplay (UIKit.UITableView tableView, UIKit.UITableViewCell cell, Foundation.NSIndexPath indexPath);
abstract member WillDisplay : UIKit.UITableView * UIKit.UITableViewCell * Foundation.NSIndexPath -> unit
override this.WillDisplay : UIKit.UITableView * UIKit.UITableViewCell * Foundation.NSIndexPath -> unit

参数

tableView
UITableView

包含行的表视图。

cell
UITableViewCell

将用于绘制行的单元格视图。

indexPath
NSIndexPath

行的位置。

属性

注解

在 (呈现之前,使用此方法替代单元格的属性,例如选择状态或背景色) 。 调用此方法后,表视图将仅修改 Alpha 和 Frame 属性,因为它会根据需要 () 对其进行动画处理。

在 [UITableViewDelegate] 中声明

适用于