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

UICollectionView的cell创建直接从第三个数据开始问题

时间:2017-10-31 18:44:20      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:就是   path   index   screen   view   exp   for   return   main   

实现的效果是这样



大概意思就是第一组没有数据就直接将改组的cell高度变成0
效果实现了,但是第二组数据创建cell就出问题了--奇葩问题



* 代码问题在这
```
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
    
    
    if (indexPath.section == 0) {
        
        if (self.couponDataArr.count) {
            return CGSizeMake(SCREEN_WIDTH, AUTO_SCALE_H(103));
        }else{
            
            return CGSizeMake(SCREEN_WIDTH, 0);
        }

    }else if(indexPath.section == 1){
        return CGSizeMake((MainScreenWidth- 10)/2, (MainScreenWidth- 10)/2+98);
    }else{
        return CGSizeZero;
    }
}
```


##就这样加个.1就好了



```
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
    
    
    if (indexPath.section == 0) {
        
        if (self.couponDataArr.count) {
            return CGSizeMake(SCREEN_WIDTH, AUTO_SCALE_H(103));
        }else{
            
            return CGSizeMake(SCREEN_WIDTH, 0.1);
        }

    }else if(indexPath.section == 1){
        return CGSizeMake((MainScreenWidth- 10)/2, (MainScreenWidth- 10)/2+98);
    }else{
        return CGSizeZero;
    }
}


```
三张图,应该很是明了

UICollectionView的cell创建直接从第三个数据开始问题

标签:就是   path   index   screen   view   exp   for   return   main   

原文地址:http://www.cnblogs.com/widgetbox/p/7762790.html

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