What's New in iOS 10 -- UICollectionView

花了一上午时间,看完WWDC2016中UICollectionView相关内容

参考自:What's New in UICollectionView in iOS 10

简单总结:

1.UICollectionView、UITableView修改了cell的生命周期,增加了pre-fetch(预加载)功能,以及相应的API


iOS10以前,cell的生命周期

--- cell即将出现,马上要使用的时候

a.prepareForReuse  cell重置及恢复默认状态、准备接收新数据

b.cellForItemAtIndexPath 大部分工作都在这执行,比如将数据填充到cell上,

c.willDisplayCell 这是app提供的最后一个机会,为cell展示做最后的工作

--- cell消失

a.didEndDisplayingCell 

b. 进入reuse queue

iOS10

--- cell预加载

a.prefetchItemsAtIndexPaths

--- 此时还没到进入屏幕的时候

b.prepareForReuse

c.cellForItemAtIndexPath

--- 即将出现(从collectionView外进入collectionView的那一瞬间)

d.willDisplayCell

--- cell消失

a.didEndDisplayingCell

b.暂缓进入reuse queue  !!!

优化的原因:

多数app中,使用UICollectionView(包括UITableView),大部分操作都在cellFor中,准备cell的过程中,时间代价昂贵。比如解析图片、访问数据库、从coreData加载数据等等。这些操作时间一般都在主线程中,当整个时间超过16.667毫秒时,即帧数少于60,就会出现掉帧现象,这样给用户的体验是相当差的。

改动点

增加属性 prefetchEnabled。 默认打开。

新增protocol  prefetchDataSource。 

// 预加载内容 --- 如异步加载数据

@require

- (void)collectionView:(UICollectionView *)collectionView prefetchItemsAtIndexPaths:(NSArray *)indexPaths;

// 对之前的一些加载可以取消或者降低优先级

@optional

- (void)collectionView:(UICollectionView *)collectionView cancelPrefetchingForItemsAtIndexPaths:(NSArray *)indexPaths;

注:cellForItemAtIndexPath所准备的cell可能永远不会真正消失【仅仅只是隐藏】

同样的。UITableView也加入了pre-fetch的相关功能

2.优化self-sizing cell

现在有三种方式可以动态计算cell的大小。

a.autoLayout --- 给cell的contentView添加约束,会通过autoLayout系统动态获取cell的size

b.重写cell的sizeThatFits()

c.重写preferredLayoutAttributesFittingAttributes() 【还可以改变alpha、transform等】

大多数时候,cell的size是难以预估、猜测的,因此给UICollectionViewFlowLayout的estimatedItemSize增加可选值 UICollectionViewFlowLayoutAutomaticSize

layout.estimatedItemSize = UICollectionViewFlowLayoutAutomaticSize


3.优化UICollectionView重新排序

去年新增reordering相关的API。

// 手势begin时,通过该方法启动interactiveMovement

beginInteractiveMovementForItem

// 手势changed时,通过该方法更新cell位置

updateInteractiveMovementTargetPosition

// 手势结束时,通过该方法放下cell,结束interactiveMovement,并且处理数据

endInteractiveMovement

// 手势取消时,通过该方法将cell恢复原位,并取消interactiveMovement

cancelInteractiveMovement,

iOS10中,仅在iOS9的基础上做了一些优化

a. UICollectionViewController中,增加属性installsStandardGestureForInteractiveMovement。可以自动添加手势,并且调用上述方法。

b.增加翻页功能。类似于iOS系统,桌面app移动到边缘翻页的效果。 接口即UIScrollView的isPagingEnagled。

4.UICollectionView、UITableView、UIScrollView增加属性refreshControl

UIRefreshControl可以单独在UICollectionView、UITableView、UIScrollView中使用。进API文档可以发现,refreshControl为UIRefreshControlHosting协议中的属性,以上三个类都遵循了该协议。


详细的效果及资料,大家可以进官网看视频、或者看PPT~这里就不一一贴出来了~~~ 

你可能感兴趣的:(What's New in iOS 10 -- UICollectionView)