iOS中UICollectionView如何实现这种布局 100
2个回答
展开全部
//大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
//边框大小根据自己需要换一下
if (indexPath.row % 2 != 0 && indexPath.row % 3 != 0) {
return CGSizeMake(140, 70);//长的
}else{
return CGSizeMake(70, 70);//方的
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询