首页改版,样式如图1和2标示,由于1会多出一道线,所以自己按照ios开发——解决UICollectionView的cell间距与设置不符问题的方法重写了一个继承UICollectionViewFlowLayout
的类LCHomeFlowLayout
,其.m文件中实现如下:
#import "LCHomeFlowLayout.h"
@implementation LCHomeFlowLayout
-(NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
{
NSMutableArray* attributes = [[super layoutAttributesForElementsInRect:rect] mutableCopy];
//从第二个循环到最后一个
for(int i = 1; i < [attributes count]; ++i) {
//当前attributes
UICollectionViewLayoutAttributes *currentLayoutAttributes = attributes[i];
//上一个attributes
UICollectionViewLayoutAttributes *prevLayoutAttributes = attributes[i - 1];
//我们想设置的最大间距,可根据需要改
NSInteger maximumSpacing = 0;
//前一个cell的最右边
NSInteger origin = CGRectGetMaxX(prevLayoutAttributes.frame);
//如果当前一个cell的最右边加上我们想要的间距加上当前cell的宽度依然在contentSize中,我们改变当前cell的原点位置
//不加这个判断的后果是,UICollectionView只显示一行,原因是下面所有cell的x值都被加到第一行最后一个元素的后面了
if(origin + maximumSpacing + currentLayoutAttributes.frame.size.width < self.collectionViewContentSize.width) {
CGRect frame = currentLayoutAttributes.frame;
frame.origin.x = origin + maximumSpacing;
currentLayoutAttributes.frame = frame;
}
}
return attributes;
}
@end
这样运行后,导致2中的item间距也没有啦,但是我设置了10,请问怎么实现?
我的collection view初始化如下:
UICollectionViewFlowLayout *flow = [[UICollectionViewFlowLayout alloc]init];
// LCHomeFlowLayout *flow = [[LCHomeFlowLayout alloc]init];
_collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight - 50) collectionViewLayout:flow];
虽然collection view有@property (nonatomic, strong) UICollectionViewLayout *collectionViewLayout;
属性,但怎么调用?