creating custom layouts
1:要继承UICollectionViewLayout,这里面的方法核心任务是以下两点:
# 指明滚动区域的尺寸。Specify the size of the scrollable content area.
# 提供attribute 对象(UICollectionViewLayoutAttributes)给cells和views,让collection view能够给它们指定位置和大小。
invalidateLayout和reloadData的区别:
invalidateLayout是要在必要时重新计算每个cell的UICollectionViewLayoutAttributes,也就是位置和大小的改变。
注意:记住,当调用invalidateLayout时,并不代表着马上开始更新layout.这个方法仅仅标识这当前layout和数据是不匹配的,需要更新。当下一个view更新循环时,collection view会检查它的layout是否过时,如果是就更新。事实上,你可以一连串的调用invalidateLayout方法,但并不是每一次都会更新。
reloadData:如果dataSource改变的话,就可以用这个。
以下三个方法是必须要实现的,它们提供了collection view所需要的主要信息。其它的方法有可能会用到,但这三个方法每次layout precess时都会按顺序调用。
1:prepare() 做上前的计算,提供layout信息。
2:collectionViewContentSize 在上个方法计算的基础上得出所有内容的总体尺寸。
3:layoutAttributesForElementsInRect: 在指定范围里的所有cells和views的attributes
Creating Layout Attributes
当你要继承UICollectionViewLayoutAttributes,必须要实现 isEqual:方法,因为collection view有些动作要要用到这个方法。
Including Decoration Views in Your Custom Layouts
这个decoration views只是装饰用的。它不像cell和supplementary,并不依赖data source.你可以用它提供自定义的背景,填充cells的周围等等,就是装饰用的。并不和数据交互。
当你要为decoration view 创建attribute时,记得要设置zIndex.它决定decoration view是否显示在cell或supplementary view的前面或后面。
Making Insertion and Deletion Animations More Interesting
插入一个cell,会引起其它cells和views 布局的改变。即使,layout对象知道已存在cells和views的当前位置,但却不知道,要插入cells的起始位置。插入时,collection view会询问layout 对象,所有cells和views的初始位置(包括,被插入的。)用下面的方法实现:
override func initialLayoutAttributesForAppearingItem(at itemIndexPath:IndexPath) ->UICollectionViewLayoutAttributes?
删除操作和插入操作是类似的。要实现的方法是:
override func finalLayoutAttributesForDisappearingItem(at itemIndexPath:IndexPath) ->UICollectionViewLayoutAttributes?
官方文档上说,当插入时collection view会问layout对象要这个插入的cell的初始属性(就是开始位置的属性,然后再动画移到最终位置)。
注意:
Note:Listing 5-2would animate all cells when one is inserted, so the three cells that were already present before the fourth was inserted would also pop out from the center of the collection view. To animate only the cell being inserted, check to see if the index path of the item matches the index path of an item passed to theprepareForCollectionViewUpdates:method and only perform the animation if a match is found. Otherwise, return the attributes returned by calling thesupermethod ofinitialLayoutAttributesForAppearingItemAtIndexPath:.
当插入一个时,全部的cell都会动起来。所以在第四个插入时其它三个已经存在的也会从collection view的中间出来。如果只有插入的cell动起来,可以在prepare(forCollectionViewUpdates updateItems: [UICollectionViewUpdateItem])里查看,是否有匹配的indexPath,如果有就执行动画。否则就返回super的initialLayoutAttributesForAppearingItemAtIndexPath:.
> 注意:初始化和结束布局,attributes里的size不能为(0,0),不然动画都不能成功