UICollectionView.InsertItems(NSIndexPath[]) 方法

定义

在 中 UICollectionView创建新单元格,根据需要进行动画处理。

[Foundation.Export("insertItemsAtIndexPaths:")]
public virtual void InsertItems (Foundation.NSIndexPath[] indexPaths);
abstract member InsertItems : Foundation.NSIndexPath[] -> unit
override this.InsertItems : Foundation.NSIndexPath[] -> unit

参数

indexPaths
NSIndexPath[]

指示所需插入位置的 NSIndexPath数组。

属性

注解

调用此方法将触发对 来自 的 CollectionViewLayout布局信息的请求。 如果结果包含可见元素,则这些元素将通过 填充 DataSource 并在屏幕上进行动画处理。

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

适用于