0

我有点绝望,因为我现在尝试了很多天来将 UITableViewController 添加到我的一个 TableView 中。我使用 - 文件 - 新文件 - Objective-C 类 - UITableViewController 的子类创建了文件。

当我为 TableView 提供我的新 UITableViewController 的自定义类并在模拟器中运行它时,我总是收到此消息

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; THREAD1:信号 SIGABRT

有谁知道我做错了什么?非常感谢

4

1 回答 1

0

你从哪里得到这个功能的dequeueReusableCellWithIdentifier: forIndexPath?试试这个。

UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) 
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
于 2013-04-08T10:12:11.377 回答