码迷,mamicode.com
首页 > 其他好文 > 详细

UICollectionView

时间:2016-03-30 23:47:25      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:

UICollectionView是Apple在iOS6开始,提供给我们的一个强大的控件。最简单的UICollectionView就是GridView,标准的UICollectionView包含如下几个部分:

1 UICollectionReusableView<SupplementaryView>:可以指定section的Header或者Footer
2 UICollectionViewCell:用于展示内容的主体,对于不同的cell可以指定不同尺寸和不同的内容

再次说明,UICollectionView的用法绝不止简单的几种!

实现一个简单的UICollectionView

UICollectionView的实现和UITableView类似,都是数据源(datasource)和代理(delegate)设计模式。datasource:提供数据源,告诉UICollectionView需要显示什么东西;delegate:代理,用于实现和用户交互。

 1 /// 必须实现的数据源方法
 2 /** 
 3  返会cell的数量
 4  */
 5 - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section;
 6 
 7 /**
 8  返会cell视图
 9  */
10 - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath;
11 
12 
13 /// 可选实现的数据源方法
14 /**
15  返会section的数量
16  */
17 - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView;
18 
19 /** 
20  返回头部或尾部
21  */
22 - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;
23 
24 /** 
25  iOS9系提供的方法,和cell的移动有关
26  */
27 - (BOOL)collectionView:(UICollectionView *)collectionView canMoveItemAtIndexPath:(NSIndexPath *)indexPath;
28 - (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath*)destinationIndexPath;

为了更高效的使用cell,实现重用是必须的,值得注意的是,UICollectionViewCell使用之前必须先注册cell

 1 /**
 2  注册cell
 3  */
 4 - (void)registerClass:(nullable Class)cellClass forCellWithReuseIdentifier:(NSString *)identifier;
 5 - (void)registerNib:(nullable UINib *)nib forCellWithReuseIdentifier:(NSString *)identifier;
 6 
 7 /** 
 8  注册头部尾部
 9  */
10 - (void)registerClass:(nullable Class)viewClass forSupplementaryViewOfKind:(NSString *)elementKind withReuseIdentifier:(NSString *)identifier;
11 - (void)registerNib:(nullable UINib *)nib forSupplementaryViewOfKind:(NSString *)kind withReuseIdentifier:(NSString *)identifier;

对比于UITableViewCell的重用,苹果对UICollectionViewCell的重用做了优化,并未提供如下代码实现的方法:

1 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
2     static NSString *reuseIdetifier = @"UITableViewCell";
3     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
4     if (!cell) {
5         cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier];
6     }
7     return cell;
8 }

分析:UICollectionViewCell起初注册了cell,我们只需要在数据源方法里面书写如下代码即可,不需要每次都判断cell是否存在。要是在重用队列里没有可用的cell的话,runtime将自动帮我们生成并初始化一个可用的cell。

/**
  注册cell    
*/
[collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:reuseIdentifier];

/**
  实现数据源方法
*/
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
    return cell;
}

 

UICollectionViewLayout,布局,之所以能实现各种效果,全依赖于这个类!UICollectionViewFlowLayout是苹果给我们实现好的一个类似流水布局的布局类。下面,来说明一下UICollectionViewFlowLayout的属性:

/** 
 每一行cell的最小间距
 */
@property (nonatomic) CGFloat minimumLineSpacing;

/**
 cell之间的最小间距
 */
@property (nonatomic) CGFloat minimumInteritemSpacing;

/**
 cell的尺寸(如果cell尺寸是固定的,直接指定该属性即可,不需要另外实现代理方法再去计算尺寸)
 */
@property (nonatomic) CGSize itemSize;

/**
 估算的cell尺寸
 */
@property (nonatomic) CGSize estimatedItemSize NS_AVAILABLE_IOS(8_0);

/**
 指定UICollectionView滚动方法
 */
@property (nonatomic) UICollectionViewScrollDirection scrollDirection;

/**
 头部尺寸
 */
@property (nonatomic) CGSize headerReferenceSize;

/**
 尾部尺寸
 */
@property (nonatomic) CGSize footerReferenceSize;

/**
 指定视图的上、左、下、右的缩进
 */
@property (nonatomic) UIEdgeInsets sectionInset;

/**
 iOS9新提供的,可以实现头部和尾部的悬浮效果
 */
@property (nonatomic) BOOL sectionHeadersPinToVisibleBounds NS_AVAILABLE_IOS(9_0);
@property (nonatomic) BOOL sectionFootersPinToVisibleBounds NS_AVAILABLE_IOS(9_0);

 

tip:当UICollectionView内容不足以占满整屏时会出现不能滑动的现场,以下为实现可滑动的方法:

    /// 建议只把和布局滚动方向一致的bounce设置为YES
    // 情况一
    flowLayout.scrollDirection = UICollectionViewScrollDirectionVertical;
    collectionView.alwaysBounceVertical = YES;
    
    // 情况二
    flowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    collectionView.alwaysBounceHorizontal = YES;

 

尊重作者劳动成果,转载请注明: 【kingdev】

UICollectionView

标签:

原文地址:http://www.cnblogs.com/xiu619544553/p/5339237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!