大概意思就是第一组没有数据就直接将改组的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;
}
}
文章来源地址https://www.toymoban.com/news/detail-642876.html
文章来源:https://www.toymoban.com/news/detail-642876.html
到了这里,关于关于UICollectionView,第一组cell给于0高度,直接动态给第二组添加cell就会出的奇葩问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!