使用 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];
网友评论