UICollectionView 实现等间距自适应宽度cell
2019-10-16 本文已影响0人
猫大人H
UICollectionViewCell内的操作
1.撑起cell的lable自适应
- (instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
// 用约束来初始化控件:
self.textLabel = [[UILabel alloc] init];
self.textLabel.textAlignment =NSTextAlignmentCenter;
[self.contentView addSubview:self.textLabel];
[self.textLabel mas_makeConstraints:^(MASConstraintMaker *make) {
// make 代表约束:
make.top.equalTo(self.contentView).with.offset(0); // 对当前view的top进行约束,距离参照view的上边界是 :
make.left.equalTo(self.contentView).with.offset(0); // 对当前view的left进行约束,距离参照view的左边界是 :
make.height.equalTo(@(itemHeight)); // 高度
make.right.equalTo(self.contentView).with.offset(0); // 对当前view的right进行约束,距离参照view的右边界是 :
}];
}
return self;
}
2.要重写UICollectionViewLayoutAttributes方法
- (UICollectionViewLayoutAttributes *)preferredLayoutAttributesFittingAttributes:(UICollectionViewLayoutAttributes *)layoutAttributes{
UICollectionViewLayoutAttributes *attributes = [super preferredLayoutAttributesFittingAttributes:layoutAttributes];
//32是cell与父视图左右边距
CGRect rect = [self.textLabel.text boundingRectWithSize:CGSizeMake([UIScreen mainScreen].bounds.size.width-32, itemHeight) options:NSStringDrawingTruncatesLastVisibleLine|NSStringDrawingUsesFontLeading|NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName: [UIFont systemFontOfSize:13]} context:nil];
rect.size.width+=24;//lable与cell左右的间距
rect.size.height+=14;//lable与cell上下的间距
attributes.frame = rect;
return attributes;
}
UICollectionView里的操作
1.创建一个UICollectionViewFlowLayout的子类重写父类的方法- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect {
NSMutableArray * attributes = [[super layoutAttributesForElementsInRect:rect] mutableCopy];
// 设置的最大间距,一般这个间距是固定的,就用外部能写的最小间距值
CGFloat maximumSpacing = self.minimumInteritemSpacing;
if (attributes.count > 0) {
UICollectionViewLayoutAttributes *firstAttributes = attributes[0];
CGRect frame = firstAttributes.frame;
frame.origin.x = self.sectionInset.left;
firstAttributes.frame = frame;
}
//第一个frame不用更改 从第二个循环到最后一个
for (NSInteger i = 1 ; i < attributes.count ; i++ ) {
// 当前的attribute
UICollectionViewLayoutAttributes * currentLayoutAttributes = attributes[i];
// 上一个attribute
UICollectionViewLayoutAttributes * prevLayoutAttributes = attributes[i - 1];
// 前一个cell的最右边
CGFloat origin = CGRectGetMaxX(prevLayoutAttributes.frame);
// 如果当前一个cell的最右边加上我们的想要的间距加上当前cell的宽度依然在contentSize中,我们改变当前cell的原点位置
// 不加这个判断的后果是,UICollectionView只显示一行,原因是下面所有的cell的x值都被加到第一行最后一个元素的后面了 考虑cell与view的左右间距
if (origin + maximumSpacing + currentLayoutAttributes.frame.size.width < self.collectionViewContentSize.width -self.sectionInset.right ) {
CGRect frame = currentLayoutAttributes.frame;
frame.origin.x = origin + maximumSpacing;
currentLayoutAttributes.frame = frame;
} else {
CGRect frame = currentLayoutAttributes.frame;
frame.origin.x = self.sectionInset.left;
currentLayoutAttributes.frame = frame;
}
}
return attributes;
}
estimatedItemSize设置
layout.estimatedItemSize = CGSizeMake(20, 32);