UICollectionView和UITableView自动计算
2017-08-27 本文已影响1184人
王家薪
UITableView在iOS 7.0引入了 estimatedRowHeight 只要给cell设置好足够的约束,系统就可以自动计算出cell的大小,再也不用费劲写计算了.
之后在iOS8.0 UICollectionView也加入了这种机制,只要设置 estimatedItemSize 一个非zero的值就可以通过约束来自动计算大小.
和UITableView不同的是,UICollectionView只要设置 estimatedItemSize 的值和添加正确的约束就可以 不需要其他设置,而UITableView还需要在代理方法 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath; 中返回一个 UITableViewAutomaticDimension 常量
虽然少了一步,但是UICollectionView自动计算大小的约束却有点不一样 因为UICollectionCell除了约束高度还需要设置宽度的约束,下面放出tableViewCell和collectionCell约束的设置对比
collectionCell tableViewCelltableViewCell约束设置比较简单,只需要约束好四周的边距就可以了,而collectionCell因为要约束宽度 所以比较麻烦,图中我设置了collectionCell的宽度是小于等于100 上下左右边距为0 其中右边距约束等级小于其他约束,对于tableViewCell我只设置了上下左右的边距,右边距间距为100
下面放出效果图
然后是代码
数据源
- (void)viewDidLoad {
[super viewDidLoad];
NSString * str = @"asdasdjaslkdjaslkdj阿斯达所大所大所大撒所多撒奥所多alksjdlajlsjdasjdklasjd";
NSMutableArray *array = [NSMutableArray array];
for (int i = 0; i < 100; i++ ) {
NSString *newStr = [str substringToIndex:(int)(arc4random() % (str.length - 1))];
[array addObject:newStr];
}
self.dataList = array.copy;
[self setTableView];
}
tableView
- (void)setTableView{
UITableView *tab = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
[self.view addSubview:tab];
tab.estimatedRowHeight =100; // 这里只要不是0就可以 设置什么值无所谓
tab.delegate = self;
tab.dataSource = self;
[tab registerNib:[UINib nibWithNibName:NSStringFromClass([TableViewCell class]) bundle:nil] forCellReuseIdentifier:@"tabCell"];
}
#pragma mark - <tableView>
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"tabCell" forIndexPath:indexPath];
cell.lable.text = [self.dataList objectAtIndex:indexPath.row];
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return self.dataList.count;
}
collectionView
- (void)setCollection{
UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
layout.estimatedItemSize = CGSizeMake(100, 100); // 这里只要不是0就可以 设置什么值无所谓
UICollectionView *vc =[[UICollectionView alloc] initWithFrame:self.view.bounds collectionViewLayout:layout];
vc.delegate = self;
vc.dataSource = self;
[self.view addSubview:vc];
vc.backgroundColor = [UIColor whiteColor];
[vc registerNib:[UINib nibWithNibName:NSStringFromClass([CollectionViewCell class]) bundle:nil] forCellWithReuseIdentifier:@"cell"];
}
#pragma mark - <collection>
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
CollectionViewCell * cell =[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
cell.backgroundColor =[UIColor yellowColor];
NSString *newStr = [self.dataList objectAtIndex:indexPath.row];
cell.label.text = newStr;
return cell;
}
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return self.dataList.count;
}