Assertion failure in -[UITableView -configureCellForDisplay:forIndexPath:]

1、错误:tableView。

Assertion failurein-[UITableView-configureCellForDisplay:forIndexPath:]

2、原因:tableView的如下数据源方法返回了一个空值。

- (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath  {

               return   nil;

}

3、解决:返回一个cell

你可能感兴趣的:(Assertion failure in -[UITableView -configureCellForDisplay:forIndexPath:])