UITableViewSource.WillDisplay 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
에서 지정한 행에 대해 셀이 렌더링되기 직전에 호출됩니다 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
행의 위치입니다.
- 특성
설명
이 메서드를 사용하여 셀이 렌더링되기 전에 셀의 속성을 재정의합니다(예: 선택 상태 또는 배경색). 이 메서드가 호출된 후 테이블 뷰는 알파 및 프레임 속성에 애니메이션 효과를 줄 때만 수정합니다(필요한 경우).
[UITableViewDelegate]에 선언됨