UICollectionView的cell创建直接从第三个数据开始问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UICollectionView的cell创建直接从第三个数据开始问题相关的知识,希望对你有一定的参考价值。
实现的效果是这样
大概意思就是第一组没有数据就直接将改组的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创建直接从第三个数据开始问题的主要内容,如果未能解决你的问题,请参考以下文章
解决UICollectionView的Cell复用引起的布局混乱问题
iOS UICollectionView 仅选择部分 Cell
iOS UICollectionView 入门 07 点击cell放大图片