我正在尝试遵循本教程,但我得到了空表。
首先,教程是使用
{
CarTableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:CellIdentifier
forIndexPath:indexPath];
}
有了这个我遇到了一个错误:
2013-11-12 11:29:35.940 TableViewStory[14940:70b] *** Terminating app due to uncaught
exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with
identifier carTableCell - must register a nib or a class for the identifier or connect a
prototype cell in a storyboard'
所以我补充说:
[self.tableView registerClass:[CarTableViewCell class]
forCellReuseIdentifier:@"carTableCell"];
在我的 viewDidLoad 上。添加 registerClass 后,我能够构建我的应用程序。但是我得到了空桌子。
谢谢你。