UICollectionView.MoveItem(NSIndexPath, NSIndexPath) 方法

定义

将元素从 中的一个位置移动到 内的另一个 UICollectionView位置,动画为 necssary。

[Foundation.Export("moveItemAtIndexPath:toIndexPath:")]
public virtual void MoveItem (Foundation.NSIndexPath indexPath, Foundation.NSIndexPath newIndexPath);
abstract member MoveItem : Foundation.NSIndexPath * Foundation.NSIndexPath -> unit
override this.MoveItem : Foundation.NSIndexPath * Foundation.NSIndexPath -> unit

参数

indexPath
NSIndexPath

要移动的项的位置。

newIndexPath
NSIndexPath

项的新位置。

属性

注解

如果在传递给 PerformBatchUpdates(Action, UICompletionHandler) 方法的Action委托中调用此方法,动画将与 的其他操作同时UICollectionView发生。

适用于