美文网首页
7、Assertion failure in -[UITable

7、Assertion failure in -[UITable

作者: 天听云道 | 来源:发表于2016-04-01 12:34 被阅读69次

    1、错误:tableView。

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

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

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
        return nil;
    }
    

    3、解决:返回一个cell

    相关文章

      网友评论

          本文标题:7、Assertion failure in -[UITable

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