UITableViewSource.MoveRow(UITableView, NSIndexPath, NSIndexPath) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called when a row has been moved so that the data source can 'implement' the changed row position that has been performed in the user interface. This ensures the data is kept in-sync with what is being displayed.
[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
Parameters
- tableView
- UITableView
Table view containing the row being moved.
- sourceIndexPath
- NSIndexPath
Location of the row to be moved.
- destinationIndexPath
- NSIndexPath
New location of the row.
- Attributes
Remarks
When a row is moved (when the table view is in edit mode), the source needs to be updated to reflect that change. Implement this method to persist the updated row position in the data source.
Declared in [UITableViewDataSource]