UITableViewSource.MoveRow(UITableView, NSIndexPath, NSIndexPath) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當移動資料列,讓資料來源可以「實作」已在使用者介面中執行的已變更資料列位置時呼叫。 這可確保資料與顯示的內容保持同步。
[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
資料列的新位置。
- 屬性
備註
當資料表檢視處於編輯模式) 時 (移動資料列時,來源必須更新以反映該變更。 實作這個方法,以保存資料來源中更新的資料列位置。
在 [UITableViewDataSource] 中宣告