UITableView.MoveRow(NSIndexPath, NSIndexPath) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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.