UITableViewSource.WillBeginEditing(UITableView, NSIndexPath) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
테이블 뷰가 살짝 밀기-삭제 편집 모드로 전환하려고 할 때 호출됩니다.
[Foundation.Export("tableView:willBeginEditingRowAtIndexPath:")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void WillBeginEditing (UIKit.UITableView tableView, Foundation.NSIndexPath indexPath);
abstract member WillBeginEditing : UIKit.UITableView * Foundation.NSIndexPath -> unit
override this.WillBeginEditing : UIKit.UITableView * Foundation.NSIndexPath -> unit
매개 변수
- tableView
- UITableView
편집할 테이블 뷰입니다.
- indexPath
- NSIndexPath
살짝 밀고 있는 행의 위치입니다.
- 특성
설명
이 메서드는 구현되지 않는 한 CommitEditingStyle(UITableView, UITableViewCellEditingStyle, NSIndexPath) 호출되지 않습니다.
사용자가 행을 살짝 밀면 테이블 뷰의 Editing 속성이 되고 true
삭제 단추가 살짝 밀린 행에 표시됩니다(에 indexPath
있음). 이 메서드는 사용자 인터페이스를 업데이트할 수 있도록 호출됩니다(예: 편집 모드를 종료하는 취소 단추를 제공).
편집 모드를 종료할 때(예: 삭제 작업 후) DidEndEditing(UITableView, NSIndexPath) 가 호출됩니다.
[UITableViewDelegate]에 선언됨