Compartilhar via


UITableViewSource.WillDisplay Método

Definição

Chamado pouco antes de uma célula ser renderizada para a linha especificada por 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

Parâmetros

tableView
UITableView

Exibição de tabela que contém a linha.

cell
UITableViewCell

Exibição de célula que será usada para desenhar a linha.

indexPath
NSIndexPath

Local da linha.

Atributos

Comentários

Use esse método para substituir as propriedades da célula antes de ser renderizada (como status de seleção ou cor da tela de fundo). Depois que esse método for chamado, o modo de exibição de tabela modificará apenas as propriedades Alpha e Frame, pois as anima (se necessário).

Declarado em [UITableViewDelegate]

Aplica-se a