次の方法で共有


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

行の新しい場所。

属性

注釈

行が移動されたとき (テーブル ビューが編集モードの場合)、その変更を反映するようにソースを更新する必要があります。 更新された行の位置をデータ ソースに保持するには、このメソッドを実装します。

適用対象