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

weixin_34146805發表於2016-07-18

1、錯誤:tableView。

Assertion failurein-[UITableView-configureCellForDisplay:forIndexPath:]

2、原因:tableView的如下資料來源方法返回了一個空值。

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

               return   nil;

}

3、解決:返回一個cell

相關文章