UICollectionView 使用介绍


UICollectionView 个步骤,来演示Cell和View的重用
1)如下图,左边是Collection View,右边是Cell和View的重用队列,刚开始,左边的数据显示内容,右边的重用队列还没有数据。
【转】UICollectionView使用介绍-LMLPHP
2)再看下图,当用户显示出了Collection View下面的内容后,Collection View中之前的一些Cell和View就已经不再被显示了,这是,系统是如何处理呢?
【转】UICollectionView使用介绍-LMLPHP
3)看这里,系统会把不用的Cell和View添加到重用队列中,以备后面使用。
【转】UICollectionView使用介绍-LMLPHP
4)如何再次被使用呢,请看下图,当用户继续往下看内容的时候,系统就会提供队列中存在的Cell和View供使用。
【转】UICollectionView使用介绍-LMLPHP
5)最终使用效果如下图

【转】UICollectionView使用介绍-LMLPHP

5、iOS6中,Cell重用改善
在iOS6中,我们可以更加方便的使用Cell,系统总是为我们初始化Cell。我们可以直接使用。只需要简单的按照两步走即可:
1) 必须使用下面的方法进行Cell类的注册:
- (void)registerClass:forCellWithReuseIdentifier:
- (void)registerClass:forSupplementaryViewOfKind:withReuseIdentifier:
- (void)registerNib:forCellWithReuseIdentifier:
- (void)registerNib:forSupplementaryViewOfKind:withReuseIdentifier:
2) 从队列中取出一个Cell,具体方法如下:
-(id)dequeueReusableCellWithReuseIdentifier:forIndexPath:
-(id)dequeueReusableSupplementaryViewOfKind:withReuseIdentifier:forIndexPath:
下面我们通过实际的代码,来演示具体如何进行Cell的重用
第一步:在collection view中进行设置(Cell类的注册)
// In collectionview setup...
[collectionView registerClass:[MyCellclass]
forCellWithReuseIdentifier:@"MY_CELL_ID"]
第二步:在下面的函数中,从队列中取出一个cell即可。并且再也不用对cell进行空值判断,以做额外的初始化操作。Cell的一切初始化工作都由系统为我们做好了。我们只需要对cell进行一些赋值等操作即可。
-(UICollectionView*)collectionView:(UICollectionView*)cv
cellForItemAtIndexPath:(NSIndexPath*)indexPath
{
MyCell *cell =[cv dequeueReusableCellWithReuseIdentifier:@"MY_CELL_ID"];
if (!cell) {
// Well, nothingreally. Never again
}
// Configure thecell's content
cell.imageView.image= ...
return cell;
}
交互(UICollectionViewDelegate)
UICollectionViewDelegate的主要功能:
►控制cell的高亮
►控制cell的选择
►在cell上支持菜单操作,如下图
                          
【转】UICollectionView使用介绍-LMLPHP
选择和高亮在iOS中都有所改进,高亮和flow的精确定位都非常好控制。
下面列出了常用的相关方法,开发者可以参考sdk的帮助文档,进行详细了解。
1) 管理cell的高亮
collectionView:shouldHighlightItemAtIndexPath:
collectionView:didHighlightItemAtIndexPath:
collectionView:didUnhighlightItemAtIndexPath:
这个方法collectionView:shouldHighlightItemAtIndexPath:的效果如下图所示:注意右边selected和highlighted的值。
【转】UICollectionView使用介绍-LMLPHP
这个方法collectionView:didHighlightItemAtIndexPath:的效果如下图所示:注意右边selected和highlighted的值。
【转】UICollectionView使用介绍-LMLPHP
2) 管理cell的选择
collectionView:shouldSelectItemAtIndexPath:
collectionView:didSelectItemAtIndexPath:
collectionView:shouldDeselectItemAtIndexPath:
collectionView:didDeselectItemAtIndexPath:
collectionView:shouldSelectItemAtIndexPath:的效果如下图
【转】UICollectionView使用介绍-LMLPHP
下面两个方法
collectionView:didUnhighlightItemAtIndexPath:
collectionView:didSelectItemAtIndexPath:的效果如下图所示:
【转】UICollectionView使用介绍-LMLPHP
1.1.3 内容的显示
UICollectionViewCell Styles
iOS6中没有预定义cell的Style
Collection View跟踪cell的选择和高亮
      通过设置cell的highlight和selection属性(包含子视图)
      如果进行了相关配置,这可以切换background view和selected background view
我们来按顺序看下面四幅图。开发者可以自行领悟规律。
【转】UICollectionView使用介绍-LMLPHP

【转】UICollectionView使用介绍-LMLPHP

【转】UICollectionView使用介绍-LMLPHP
【转】UICollectionView使用介绍-LMLPHP

下图是UICollectionView相关的类图,从图中我们可以看到
l UICollectionView继承自UIScrollView,
l 尊循UICollectionViewDelegate和UICollectionViewDataSource两个协议
l 管理UICollectionViewCell
【转】UICollectionView使用介绍-LMLPHP
图中貌似还缺点东西,什么呢?对了,就是缺少Layout。我们需要Layout对cell和其它的view进行布局。再看下图,图中多了UICollectionViewLayout和UICollectionViewFlowLayout。
【转】UICollectionView使用介绍-LMLPHP
下面我们对UICollectionViewLayout进行介绍
使用自己的layoutUICollectionViewLayout
UICollectionViewLayout是一个抽象基类,你需要继承自他,来为collection view生成layout信息。Layout对象的作用是决定cells,Supplementary views和Decorationviews在collection view中的布局位置。
你需要计算如下view的layout属性
►Cells
►Supplementary views
►Decoration views
系统也为我们定义了layout属性,即UICollectionViewLayoutAttributes,它主要包括如下内容:
►位置
►大小
►透明度
►ZIndex
►转场
如下面的两个图是collection view的layout。
【转】UICollectionView使用介绍-LMLPHP
【转】UICollectionView使用介绍-LMLPHP


技术博客http://www.cnblogs.com/ChenYilong/ 
新浪微博http://weibo.com/luohanchenyilong 

、 可以进行全局配置,如下属性
@property(CGFloat) minimumInteritemSpacing

2、 也可以通过delegate对每一个section进行配置,如下代码
collectionView:layout:minimumInteritemSpacingForSectionAtIndex:

看看下面的两个图,蓝色是实际的item间距,绿色的是最小item间距。

Scrolling direction(滚动方向)
设置scrollDirection属性即可。两个值如下
UICollectionViewScrollDirectionVertical
UICollectionViewScrollDirectionHorizontal
主要作用:
►定义了Flow Layout的基本行为
► 控制页眉页脚的维度

UICollectionViewScrollDirectionVertical效果如下图所示
【转】UICollectionView使用介绍-LMLPHP

UICollectionViewScrollDirectionHorizontal效果如下图所示
【转】UICollectionView使用介绍-LMLPHP

Header and footer size(页眉和页脚大小)
下面是页眉和页脚的一些解释。
► 也就是supplementary views
► 通过数据源的方法来提供内容,如下
-collectionView:viewForSupplementaryElementOfKind:atIndexPath:

► 两种常量(类型)
UICollectionElementKindSectionHeader
UICollectionElementKindSectionFooter

► 同样需要注册一个类并从队列中取出view
- registerClass:forSupplementaryViewOfKind:withReuseIdentifier:
-registerNib:forSupplementaryViewOfKind:withReuseIdentifier:
-dequeueReusableSupplementaryViewOfKind:withReuseIdentifier:forIndexPath:

页眉和页脚的size配置方式:
1)可以全局配置,如下属性
@property(CGSize) headerReferenceSize
@property(CGSize) footerReferenceSize

2)也可以通过delegate对每一个section进行配置,如下代码
collectionView:layout:referenceSizeForHeaderInSection:
collectionView:layout:referenceSizeForFooterInSection:
页眉页脚的属性如下图
【转】UICollectionView使用介绍-LMLPHP

当垂直的时候,需要设置Height,如下图
【转】UICollectionView使用介绍-LMLPHP

当水平的时候,需要设置Width,如下图
【转】UICollectionView使用介绍-LMLPHP

Section Inset
我们先通过两个图来看看Sections Insets是怎么回事
【转】UICollectionView使用介绍-LMLPHP

【转】UICollectionView使用介绍-LMLPHP

从上面的两个图中,我们大概知道了,Section Inset就是某个section中cell的边界范围。

SectionInset的配置方式同样有两种
1、 通过全局配置,如下属性
@propertyUIEdgeInsets sectionInset;

2、 也通过delegate对每一个section进行配置,如下函数
- (UIEdgeInsets)collectionView:layout:insetForSectionAtIndex:

DEMO
【转】UICollectionView使用介绍-LMLPHP


技术博客http://www.cnblogs.com/ChenYilong/ 
新浪微博http://weibo.com/luohanchenyilong

© chenyilong. Powered by Postach.io

05-16 17:41