最近有很多小伙伴们都问我有没有cell里面再嵌套tableview的demo,老说不知道怎么做,不知道怎么计算高度啊。其实这个很简单的,昨天晚上正好有点时间,写了这个demo。
本篇文章只讲如何在cell中嵌套UITableView,只是粗浅知识点,只教大家基本的如何去计算UITableview的高度。这里模拟评论写了个demo,增加或者删除一条评论都可以马上更新,得到正确的显示。
这里使用了100条数据,但是界面并不卡。这里使用了笔者所开源的自动计算cell的高度来计算行高的,而且这是带缓存功能的。用于计算的cell是重用的,因此效率是非常高的。
详细使用教程,可阅读 开源HYBMasonryAutoCellHeight自动计算行高
笔者尝试画了一张图,尽量反映出实现的思路:
外层UITableView通过HYBMasonryAutoCellHeight计算cell的高度并缓存起来,而cell中所嵌套的UITableView(显示评论信息的表格)也是通过HYBMasonryAutoCellHeight来计算cell的高度并缓存。当评论TableView增加或者删除一条数据时,通过代理反馈到外层TableView,然后重装计算行高并更新缓存。
这里使用了两个模型类HYBTestModel是外层UITableView的数据源模型,而HYBCommentModel是评论UITableView的数据源模型。
@interfaceHYBTestModel: NSObject @property (nonatomic, copy) NSString *uid; @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) NSString *desc; @property (nonatomic, copy) NSString *headImage; // 评论数据源 @property (nonatomic, strong) NSMutableArray *commentModels; // 因为评论是动态的,因此要标识是否要更新缓存 @property (nonatomic, assign) BOOL shouldUpdateCache; @end
其中,uid必须保证唯一,它是用来缓存高度的唯一标识符,通常model的id作为uniqueKey。增加shouldUpdateCache属性的目的是在增加或者删除评论时,以识别是否需要重新计算行高并刷新对应的缓存高度。
@interfaceHYBCommentModel: NSObject @property (nonatomic, copy) NSString *cid; @property (nonatomic, copy) NSString *name; @property (nonatomic, copy) NSString *reply; @property (nonatomic, copy) NSString *comment; @end
这里的cid是指评论id,它是作为缓存行高的key。
这个是外层UITableView所需要使用的cell,它里面会嵌套着评论的UITableView。当评论内容发生变化时,通过代理来实现数据的刷新,行高的重新计算与缓存。
@class HYBTestModel; @protocol HYBTestCellDelegate <NSObject> - (void)reloadCellHeightForModel:(HYBTestModel *)modelatIndexPath:(NSIndexPath *)indexPath; @end @interfaceHYBTestCell: UITableViewCell @property (nonatomic, weak) id delegate; - (void)configCellWithModel:(HYBTestModel *)modelindexPath:(NSIndexPath *)indexPath; @end
当我们配置其数据时,我们要计算出评论的tablview的高度。这里是通过HYBMasonryAutoCellHeight这个开源库来实现的。当配置数据时,通过遍历所有的评论模型,然后计算cell的行高,累加起来就是Tablview的高度,然后刷新tableview的约束。这样就可以正常地计算出整个外部cell的高度了。
- (void)configCellWithModel:(HYBTestModel *)modelindexPath:(NSIndexPath *)indexPath { self.indexPath = indexPath; self.titleLabel.text = model.title; self.descLabel.text = model.desc; self.headImageView.image = [UIImageimageNamed:model.headImage]; self.testModel = model; CGFloat tableViewHeight = 0; for (HYBCommentModel *commentModel in model.commentModels) { CGFloat cellHeight = [HYBCommentCellhyb_heightForTableView:self.tableViewconfig:^(UITableViewCell *sourceCell) { HYBCommentCell *cell = (HYBCommentCell *)sourceCell; [cellconfigCellWithModel:commentModel]; }cache:^NSDictionary *{ return @{kHYBCacheUniqueKey: commentModel.cid, kHYBCacheStateKey: @"", kHYBRecalculateForStateKey: @(NO)}; }]; tableViewHeight += cellHeight; } [self.tableViewmas_updateConstraints:^(MASConstraintMaker *make) { make.height.mas_equalTo(tableViewHeight); }]; self.tableView.dataSource = self; self.tableView.delegate = self; [self.tableViewreloadData]; }
因为评论cell的内容不会改变,要么被删除了,要么就是添加新的评论,因此不需要清除缓存,将 kHYBRecalculateForStateKey对应的值设置为NO即可。因为我们在上面一步配置外部cell的数据的时候,已经调用过下面计算行高的方法来计算了并且会自动缓存起来,所以这一步的调用其实只是直接获取缓存的高度,因为效率是非常高的。
- (CGFloat)tableView:(UITableView *)tableViewheightForRowAtIndexPath:(NSIndexPath *)indexPath { HYBCommentModel *model = [self.testModel.commentModelsobjectAtIndex:indexPath.row]; return [HYBCommentCellhyb_heightForTableView:self.tableViewconfig:^(UITableViewCell *sourceCell) { HYBCommentCell *cell = (HYBCommentCell *)sourceCell; [cellconfigCellWithModel:model]; }cache:^NSDictionary *{ return @{kHYBCacheUniqueKey: model.cid, kHYBCacheStateKey: @"", kHYBRecalculateForStateKey: @(NO)}; }]; }
选中某条评论的时候,就增加一条评论,然后通过代理反馈到控制器类刷新数据。同样,当删除一条评论的时候,也通过代理反馈到控制器类,刷新数据:
- (void)tableView:(UITableView *)tableViewdidSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableViewdeselectRowAtIndexPath:indexPathanimated:YES]; // 添加一条数据 HYBCommentModel *model = [[HYBCommentModel alloc]init]; model.name = @"标哥"; model.reply = @"标哥的技术博客"; model.comment = @"哈哈,我被点击后自动添加了一条数据的,不要在意我~"; model.cid = [NSStringstringWithFormat:@"commonModel%ld", self.testModel.commentModels.count + 1]; [self.testModel.commentModelsaddObject:model]; if ([self.delegaterespondsToSelector:@selector(reloadCellHeightForModel:atIndexPath:)]) { self.testModel.shouldUpdateCache = YES; [self.delegatereloadCellHeightForModel:self.testModelatIndexPath:self.indexPath]; } } - (BOOL)tableView:(UITableView *)tableViewcanEditRowAtIndexPath:(NSIndexPath *)indexPath { return YES; } - (void)tableView:(UITableView *)tableViewcommitEditingStyle:(UITableViewCellEditingStyle)editingStyleforRowAtIndexPath:(NSIndexPath *)indexPath { if (editingStyle == UITableViewCellEditingStyleDelete) { [self.testModel.commentModelsremoveObjectAtIndex:indexPath.row]; if ([self.delegaterespondsToSelector:@selector(reloadCellHeightForModel:atIndexPath:)]) { self.testModel.shouldUpdateCache = YES; [self.delegatereloadCellHeightForModel:self.testModelatIndexPath:self.indexPath]; } } }
当增加或者删除一条评论的时候,testModel会将shouldUpdateCache设置为YES,以便在reload对应的某一行之后,行高可以重新计算并更新缓存的高度而不是使用之前所缓存起来的高度:
- (CGFloat)tableView:(UITableView *)tableViewheightForRowAtIndexPath:(NSIndexPath *)indexPath { HYBTestModel *model = [self.datasourceobjectAtIndex:indexPath.row]; CGFloat h = [HYBTestCellhyb_heightForTableView:tableViewconfig:^(UITableViewCell *sourceCell) { HYBTestCell *cell = (HYBTestCell *)sourceCell; [cellconfigCellWithModel:modelindexPath:indexPath]; }cache:^NSDictionary *{ NSDictionary *cache = @{kHYBCacheUniqueKey: model.uid, kHYBCacheStateKey : @"", kHYBRecalculateForStateKey: @(model.shouldUpdateCache)}; model.shouldUpdateCache = NO; return cache; }]; return h; } #pragma mark - HYBTestCellDelegate - (void)reloadCellHeightForModel:(HYBTestModel *)modelatIndexPath:(NSIndexPath *)indexPath { [self.tableViewreloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationFade]; }
大家可以到笔者的GITHUB下载Demo运行起来看看效果,代码中对于防止反复计算问题是没有处理的,为了demo的足够简单,不添加任何控制逻辑。在真正开发中,要想性能更高,需要自己处理~
下载地址: CoderJackyHuang:CellEmbedTableView
给大家推荐笔者所开源的自动计算行高的库,使用起来是很方便的!
欢迎大家star,若有问题及时反馈与作者!
关注 | 账号 | 备注 |
---|---|---|
标哥博客iOS交流群一 | 324400294(满) | 群一若已满,请申请群二 |
标哥博客iOS交流群二 | 494669518 | 群二若已满,请申请群三 |
标哥博客iOS交流群三 | 461252383(满) | 群三若已满,请申请群四 |
标哥博客iOS交流群四 | 250351140 | 群四若已满,会有提示信息 |
关注微信公众号 | iOSDevShares | 关注微信公众号,会定期地推送好文章 |
关注新浪微博账号 | 标哥的技术博客 | 关注微博,每次发布文章都会分享到新浪微博 |
关注标哥的GitHub | CoderJackyHuang | 这里有很多的Demo和开源组件 |
关于我 | 进一步了解标哥 | 如果觉得文章对您很有帮助,可捐助我! |