tableView嵌套CollectionView,并且tabl
2019-03-28 本文已影响43人
Tomous
先上效果图
gif.gif
2、tableViewCell内部创建collectionView,具体就直接看代码吧;值得一提的是,如果要自适应collectionCell的宽度,必须要使用
3、 固定cell之间的距离,创建UICollectionViewFlowLayout的子类,重写
4、collectionCell的布局,实现cell的自适应,要在cell内部实现
实现原理分为两部分:
1、tableView里面嵌套CollectionView,tableViewCell分为标题和collectionView两部分,,并且根据collectionView的cell个数来自适应高度;
2、collectionView的cell根据里面文字长度自适应宽度(也可以自适应高度,自行设置)
简单的介绍一下代码,需要demo的同学请自行移步到gitHub,如果有帮到你,请顺手给个star哦😀😀
1、tableIView就没有什么好介绍的了,最主要的就是cell的高度,我这是是根据title的高度+模型里面collectionCell的个数来计算了,如果有更好思路的童鞋,欢迎下面留言。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.dataSource.count;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
DCMyTableViewCell *cell = [DCMyTableViewCell cellWithTableView:tableView forRowAtIndexPath:indexPath];
cell.model = self.dataSource[indexPath.row];
return cell;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
DCCarModel *model = self.dataSource[indexPath.row];
return 50+(model.carType.count/2+model.carType.count%2)*30;
}/*(model.carType.count/2+model.carType.count%2)这是计算有几行collectionCell,我设置的是一行有两个cell*/
2、tableViewCell内部创建collectionView,具体就直接看代码吧;值得一提的是,如果要自适应collectionCell的宽度,必须要使用layout.estimatedItemSize
这个属性;
/** 创建UICollectionViewFlowLayout的子类,固定cell之间的距离,解决如果cell是一个的话,会居中的bug */
DCCollectionViewFlowLayout *layout = [[DCCollectionViewFlowLayout alloc]init];
CGFloat itemWidth = ScreenWidth/2;
// 设置每个item的大小
layout.estimatedItemSize = CGSizeMake(itemWidth-10, 25);
// 设置列间距
layout.minimumInteritemSpacing = 1;
// 设置行间距
layout.minimumLineSpacing = 1;
//每个分区的四边间距UIEdgeInsetsMake
layout.sectionInset = UIEdgeInsetsMake(0, 5, 0, 5);
/**
初始化mainCollectionView
设置collectionView的位置
*/
self.collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, self.titleLabel.bottom+10, ScreenWidth, 50) collectionViewLayout:layout];
self.collectionView.scrollEnabled = NO;
[self.collectionView registerClass:[DCMyCollectionViewCell class] forCellWithReuseIdentifier:CellId];
self.collectionView.delegate = self;
self.collectionView.dataSource = self;
self.collectionView.backgroundColor = [UIColor whiteColor];
[self addSubview:self.collectionView];
这是赋值之后重新计算collectionView的高度
-(void)layoutSubviews {
[super layoutSubviews];
self.collectionView.frame = CGRectMake(0, self.titleLabel.bottom, ScreenWidth, (self.model.carType.count/2+self.model.carType.count%2)*30);
}
-(void)setModel:(DCCarModel *)model {
_model = model;
self.titleLabel.text = model.title;
}
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return self.model.carType.count;
}
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
return 1;
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
DCMyCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellId forIndexPath:indexPath];
cell.model = self.model.carType[indexPath.row];
return cell;
}
3、 固定cell之间的距离,创建UICollectionViewFlowLayout的子类,重写layoutAttributesForElementsInRect
方法,解决如果cell是一个的话,会居中的bug
/** 固定cell之间的距离 */
-(NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {
NSMutableArray * attributes = [[super layoutAttributesForElementsInRect:rect] mutableCopy];
// 设置的最大间距,根据需要修改
CGFloat maximumSpacing = 5.0;
if (attributes.count > 0) {
UICollectionViewLayoutAttributes *firstAttributes = attributes[0];
CGRect frame = firstAttributes.frame;
frame.origin.x = maximumSpacing;
firstAttributes.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值都被加到第一行最后一个元素的后面了
if (origin + maximumSpacing + currentLayoutAttributes.frame.size.width < self.collectionViewContentSize.width - 30) {
CGRect frame = currentLayoutAttributes.frame;
frame.origin.x = origin + maximumSpacing;
currentLayoutAttributes.frame = frame;
} else {
CGRect frame = currentLayoutAttributes.frame;
frame.origin.x = maximumSpacing;
currentLayoutAttributes.frame = frame;
}
}
return attributes;
}
4、collectionCell的布局,实现cell的自适应,要在cell内部实现preferredLayoutAttributesFittingAttributes
的方法和estimatedItemSize
相配合
-(void)initView{
self.bgView = [[UIView alloc]init];
self.bgView.layer.cornerRadius = 9;
self.bgView.layer.borderColor = [UIColor lightGrayColor].CGColor;
self.bgView.layer.borderWidth = 0.5;
[self addSubview:self.bgView];
self.detailLabel = [[UILabel alloc]init];
self.detailLabel.font = [UIFont systemFontOfSize:12];
self.detailLabel.textAlignment = NSTextAlignmentCenter;
self.detailLabel.numberOfLines = 0;
[self addSubview:self.detailLabel];
}
-(void)layoutSubviews {
[super layoutSubviews];
NSString *str = [NSString stringWithFormat:@"%@ %@辆",self.model.carType,self.model.carNum];
CGSize maxSize = CGSizeMake((ScreenWidth-10)/2, 30);
NSDictionary *dict = @{NSFontAttributeName:[UIFont systemFontOfSize:12]};
CGSize carSize = [str boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin attributes:dict context:nil].size;
self.bgView.frame = CGRectMake(0, 0, carSize.width+10, carSize.height+4);
self.detailLabel.frame = CGRectMake(5, 1, carSize.width, carSize.height+2);
}
-(void)setModel:(DCCarDetailModel *)model {
_model = model;
self.detailLabel.text = [NSString stringWithFormat:@"%@ %@辆",model.carType,model.carNum];
}
-(UICollectionViewLayoutAttributes *)preferredLayoutAttributesFittingAttributes:(UICollectionViewLayoutAttributes *)layoutAttributes {
// 获得每个cell的属性集
UICollectionViewLayoutAttributes *attributes = [super preferredLayoutAttributesFittingAttributes:layoutAttributes];
// 计算cell里面textfield的宽度
// NSString *str = [NSString stringWithFormat:@"%@-%@ %@辆",self.model.brandName,self.model.vehicleModelName,self.model.carCount];
CGRect frame = [self.detailLabel.text boundingRectWithSize:CGSizeMake(CGFLOAT_MAX, 30) options:(NSStringDrawingUsesLineFragmentOrigin) attributes:[NSDictionary dictionaryWithObjectsAndKeys:self.detailLabel.font,NSFontAttributeName, nil] context:nil];
// 这里在本身宽度的基础上 又增加了10
frame.size.width += 10;
frame.size.height = 30;
// 重新赋值给属性集
attributes.frame = frame;
return attributes;
}
好了,如果有不懂得童鞋,欢迎在下面留言哦,我会及时回复大家的。demo传送门