我正面临与uicollectionview
相关的问题。
我想用两种不同的流程布局实现两个collectionview部分。
我已经有一个部分显示带有customflowlayout的项目列表。现在我想再添加一个部分,并希望为此添加一些不同的flowlayout。
答案 0 :(得分:0)
在集合视图的flowlayout委托中,您可以尝试这样的事情 -
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.section == 0){
}else{
}
}