码迷,mamicode.com
首页 > 其他好文 > 详细

Assertion failure in -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]

时间:2015-12-14 18:31:13      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

    在看精通IOS开发一书的UITableView时候遇到这个问题,

    UITableView *tableView = (id)[self.view viewWithTag:1];
    tableView.rowHeight = 65;
    UINib *nib = [UINib nibWithNibName:@"NameAndColorCell" bundle:nil];
    [tableView registerNib:nib forCellReuseIdentifier:CellTableIdentifier];

    打了个断点发现tableview是nil,看了半天都不知道是什么原因,后来发现是tag的问题,默认拖进来的UITableView是0,而书上的例子是1。

Assertion failure in -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]

标签:

原文地址:http://www.cnblogs.com/bigliu/p/5045859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!