美文网首页
iOS --- UICollectionView 基础全面解析

iOS --- UICollectionView 基础全面解析

作者: 鑫飞 | 来源:发表于2017-04-13 16:23 被阅读59次
  1. UICollectionView 和 UICollectionViewController 类是iOS6 新引进的API,用于展示集合视图,布局更加灵活,可实现多列布局,用法类似于UITableView 和 UITableViewController 类。
  2. 使用UICollectionView 必须实现UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout这三个协议。
  3. 下面先给出常用到的一些方法。(只给出常用的,其他的可以查看相关API)
(1) 定义展示的UICollectionViewCell的个数
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return 10;
} 
(2) 定义展示的Section的个数
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{  
    return 1;  
}   
(3) 每个UICollectionView展示的内容
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {  
    static NSString * CellIdentifier = @"GradientCell";  
    UICollectionViewCell * cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIdentifier forIndexPath:indexPath];  
  
    cell.backgroundColor = [UIColor colorWithRed:((10 * indexPath.row) / 255.0) green:((20 * indexPath.row)/255.0) blue:((30 * indexPath.row)/255.0) alpha:1.0f];  
    return cell;  
}   
(4) 定义每个UICollectionView 的大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath  {  
    return CGSizeMake(96, 100);  
}   
(5) 定义每个UICollectionView 的 margin
-(UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {  
    return UIEdgeInsetsMake(5, 5, 5, 5);  //分别为上、左、下、右
}   
(6) 定义每个UICollectionView 区头或区尾
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{  
    NSString *reuseIdentifier;  
    if ([kind isEqualToString: UICollectionElementKindSectionFooter ]){  
        reuseIdentifier = kfooterIdentifier;  
    }else{  
        reuseIdentifier = kheaderIdentifier;  
    }  
      
    UICollectionReusableView *view =  [collectionView dequeueReusableSupplementaryViewOfKind :kind   withReuseIdentifier:reuseIdentifier   forIndexPath:indexPath];  
      
    UILabel *label = (UILabel *)[view viewWithTag:1];  
    if ([kind isEqualToString:UICollectionElementKindSectionHeader]){  
        label.text = [NSString stringWithFormat:@"这是header:%d",indexPath.section];  
    }  
    else if ([kind isEqualToString:UICollectionElementKindSectionFooter]){  
        view.backgroundColor = [UIColor lightGrayColor];  
        label.text = [NSString stringWithFormat:@"这是footer:%d",indexPath.section];  
    }  
    return view;  
}  
(7) 返回这个UICollectionView是否可以被选择
-(BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath  {  
    return YES;  
}  
(8) 返回头headerView的大小
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section{  
    CGSize size={320,45};  
    return size;  
}  
(9) 返回头footerView的大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section  {  
    CGSize size={320,45};  
    return size;  
}  
(10) 返回每个section中不同的行之间的行间距
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section  {  
    return 10;  
}  
(11) 返回每个section中不同的行之间的行间距
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section  {  
    return 10;  
}  
(12) 返回每个item之间的间距
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section  {  
    return 100;  
}  
(13) 选择了某个cell
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath  {  
    UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath];  
    [cell setBackgroundColor:[UIColor greenColor]];  
}  
(14) 取消选择了某个cell
- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath  {  
    UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:indexPath];  
    [cell setBackgroundColor:[UIColor redColor]];  
}  

相关文章

网友评论

      本文标题:iOS --- UICollectionView 基础全面解析

      本文链接:https://www.haomeiwen.com/subject/qcwbattx.html