1、错误:tableView。
Assertion failure in -[UITableView -configureCellForDisplay:forIndexPath:]
2、原因:tableView的如下数据源方法返回了一个空值。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
return nil;
}
3、解决:返回一个cell
网友评论