第一次写博客,写的不规范的地方还望各位指点。(没有用过MarkDown,等发出来之后再根据格式改吧)
本人算是iOS程序员新人一枚,前几天在写一个Demo,需要用到UICollectionView,并且动态生成cell的size,搜了一下发现大部分都是动态生成UITableView的cell高度的文章。我去论坛问,发现并没有人回答,而且有几个跟我一样的新人有同样的疑惑,在找到方法之后决定写下这篇文章。这篇文章是MVC架构下没有使用Masonry条件下动态生成cell的size。
跟UITableView非常相似,UICollectionView也需要其viewController实现几个协议:UICollectionViewDataSource;UICollectionViewDelegate;UICollectionViewDelegateFlowLayout。
根据MVC的思想:V跟M之间是相互解耦,所以有些文章中提到的用M保存V的size,在V内部访问M用于保存或者读取其size我觉得不可取。在不使用Masonry的情况下,其基本思想是在获取M的内容后,根据M的属性的具体内容计算出所需的V的size,其中这一思想可以分为两种实现方式:
第一种方式是由V计算,然后在协议中返回V的size的回调方法中实例化一个V,然后给这个V附上相应M的值,之后得到这个V的size,然后返回。
第二种方式是直接由C计算,这种方式是假设C知道V的全部细节,比如其ContentView的subViews的全部细节,因此我个人感觉这种方式不是很好,毕竟C的内容有已经很臃肿了,而且这种方式下存在一些代码冗余的现象,下面将详细说明(理解不对的话还请前辈们多指点)。
可以看到最后的效果非常简单。cell里面有两个label,这两个label将根据其内容自适应size,接着cell根据label的size自适应自己的size。
首先是第一种实现方式:在V的内部实现size的计算。
首先自定义cell,继承自UICollectionViewcell
@interface LCHCollectionViewCell : UICollectionViewCell
@property (nonatomic, strong) UILabel *firstLabel;
@property (nonatomic, strong) UILabel *secondLabel;
@end
然后重写initWithFrame方法,将label添加到contentView中
- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
_firstLabel = [[UILabel alloc] init];
_firstLabel.numberOfLines = 1;
_firstLabel.textAlignment = NSTextAlignmentCenter;
_firstLabel.backgroundColor = [UIColor redColor];
_firstLabel.font = [UIFont systemFontOfSize:25];
_secondLabel = [[UILabel alloc] init];
_secondLabel.numberOfLines = 1;
_secondLabel.textAlignment = NSTextAlignmentCenter;
_secondLabel.backgroundColor = [UIColor greenColor];
_secondLabel.font = [UIFont systemFontOfSize:25];
[self.contentView addSubview:_firstLabel];
[self.contentView addSubview:_secondLabel];
self.backgroundColor = [UIColor blackColor];
}
return self;
}
最后重写layoutSubviews,用于在其label赋值之后可以调整V的Frame
- (void)layoutSubviews {
[super layoutSubviews];
CGSize sizeForFirstLabel = [self.firstLabel.text boundingRectWithSize:CGSizeMake([[UIScreen mainScreen] bounds].size.width, __FLT_MAX__) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType,NSFontAttributeName:[UIFont systemFontOfSize:25]} context:nil].size;
self.firstLabel.frame = CGRectMake(0, 0, sizeForFirstLabel.width, sizeForFirstLabel.height);
CGSize sizeForSecondLabel = [self.secondLabel.text boundingRectWithSize:CGSizeMake([[UIScreen mainScreen] bounds].size.width, __FLT_MAX__) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType,NSFontAttributeName:[UIFont systemFontOfSize:25]} context:nil].size;
self.secondLabel.frame = CGRectMake(sizeForFirstLabel.width, 0, sizeForSecondLabel.width, sizeForSecondLabel.height);
CGRect frame = self.contentView.frame;
frame.size = CGSizeMake(sizeForFirstLabel.width + sizeForSecondLabel.width, MAX(sizeForFirstLabel.height, sizeForSecondLabel.height));
self.contentView.frame = frame;
CGRect cellFrame = self.frame;
cellFrame.size = self.contentView.frame.size;
self.frame = cellFrame;
}
在C中实现UICollectionViewDelegateFlowLayout协议中的下列方法
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath;
这个方法用于返回当前cell的Size
LCHCollectionViewCell *cell = [[LCHCollectionViewCell alloc] init];
LCHModel *model = self.models[indexPath.row];
cell.firstLabel.text = model.firstString;
cell.secondLabel.text = model.secondString;
[cell layoutIfNeeded];
CGRect frame = cell.frame;
return frame.size;
通过调用
[cell layoutIfNeeded];
当前cell已经重新布局,并生成了新的frame,获取其size之后返回,就是当前model的内容所对应的需要的view的size。
Demo的地址在这:
view内自适应size的Demo