美文网首页IOS积累
UITableView-FDTemplateLayoutCel

UITableView-FDTemplateLayoutCel

作者: XY_Coder | 来源:发表于2017-08-29 14:35 被阅读7次

    使用 UITableView-FDTemplateLayoutCell库做cell高度自适应,报错:

    NSAssert(templateCell != nil, @"Cell must be registered to table view for identifier - %@", identifier);
    

    正常的原因是:没有提前注册tableviewCell。需要在reload之前,最好是初始化之后就提前根据id注册cell。

    当然也有不正常原因:你会发现注册了cell还是一样的报这个错,那么你要检查一下你有没有把设置tableview的header或者footer的方法放在了注册cell之前!!!比如说这样子的代码:

    tableView.tableViewFooter = [UIView new];
    

    相关文章

      网友评论

        本文标题: UITableView-FDTemplateLayoutCel

        本文链接:https://www.haomeiwen.com/subject/tfvodxtx.html