Compartir a través de


UITableView.MoveRow(NSIndexPath, NSIndexPath) Método

Definición

Mueve una fila de fromIndexPath a toIndexPath.

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

Parámetros

fromIndexPath
NSIndexPath

que NSIndexPath indica la fila original.

toIndexPath
NSIndexPath

Ubicación deseada.

Atributos

Comentarios

No hay ninguna función para mover una matriz de filas (a diferencia de InsertRows(NSIndexPath[], UITableViewRowAnimation) o DeleteRows(NSIndexPath[], UITableViewRowAnimation)). En su lugar, el desarrollador de la aplicación debe llamar repetidamente a esta función. Si se llama a esta función dentro de un BeginUpdates()-EndUpdates() bloque de animación, toda la manipulación de filas se producirá como una sola animación.

Se aplica a