다음을 통해 공유


UITableViewDataSource.MoveRow(UITableView, NSIndexPath, NSIndexPath) 메서드

정의

데이터 원본이 사용자 인터페이스에서 수행된 변경된 행 위치를 '구현'할 수 있도록 행이 이동되었을 때 호출됩니다. 이렇게 하면 데이터가 표시되는 내용과 동기화된 상태로 유지됩니다.

[Foundation.Export("tableView:moveRowAtIndexPath:toIndexPath:")]
public virtual void MoveRow (UIKit.UITableView tableView, Foundation.NSIndexPath sourceIndexPath, Foundation.NSIndexPath destinationIndexPath);
abstract member MoveRow : UIKit.UITableView * Foundation.NSIndexPath * Foundation.NSIndexPath -> unit
override this.MoveRow : UIKit.UITableView * Foundation.NSIndexPath * Foundation.NSIndexPath -> unit

매개 변수

tableView
UITableView

이동 중인 행이 포함된 테이블 뷰입니다.

sourceIndexPath
NSIndexPath

이동할 행의 위치입니다.

destinationIndexPath
NSIndexPath

행의 새 위치입니다.

특성

설명

행이 이동되면(테이블 뷰가 편집 모드에 있는 경우) 해당 변경 사항을 반영하도록 원본을 업데이트해야 합니다. 데이터 원본에서 업데이트된 행 위치를 유지하려면 이 메서드를 구현합니다.

적용 대상