首頁改版,樣式如圖1和2標示,由於1會多出一道線,所以自己按照ios開發-解決UICollectionView的cell間距與設定不符問題的方法重寫了一個繼承UICollectionViewFlowLayout
的類LCHomeLayout
,其.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;
屬性,但怎麼呼叫?