所以我为我的学校做了一个rss阅读器,并完成了代码。我运行了测试,它给了我这个错误。下面是它引用的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell =
[tableView dequeueReusableCellWithIdentifier:CellIdentifier
forIndexPath:indexPath];
if (cell == nil) {
cell =
[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier];
}
以下是输出中的错误:
2012-10-04 20:13:05.356 Reader[4390:c07] * Assertion failure in
-[UITableView dequeueReusableCellWithIdentifier:forIndexPath:], /SourceCache/UIKit_Sim/UIKit-2372/UITableView.m:4460 2012-10-04
20:13:05.357 Reader[4390:c07] * Terminating app due to uncaught
exception 'NSInternalInconsistencyException', reason: 'unable to
dequeue a cell with identifier Cell - must register a nib or a class
for the identifier or connect a prototype cell in a storyboard'
* First throw call stack: (0x1c91012 0x10cee7e 0x1c90e78 0xb64f35 0xc7d14 0x39ff 0xd0f4b 0xd101f 0xb980b 0xca19b 0x6692d 0x10e26b0
0x228dfc0 0x228233c 0x228deaf 0x1058cd 0x4e1a6 0x4ccbf 0x4cbd9 0x4be34
0x4bc6e 0x4ca29 0x4f922 0xf9fec 0x46bc4 0x47311 0x2cf3 0x137b7 0x13da7
0x14fab 0x26315 0x2724b 0x18cf8 0x1becdf9 0x1becad0 0x1c06bf5
0x1c06962 0x1c37bb6 0x1c36f44 0x1c36e1b 0x147da 0x1665c 0x2a02 0x2935)
libc++abi.dylib: terminate called throwing an exception
下面是它在错误屏幕上显示的代码:
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
请帮助!
这个问题很可能是因为你在storyboard中配置了自定义的UITableViewCell,但是你没有使用storyboard来实例化你的UITableViewController,它使用这个UITableViewCell。例如,在MainStoryboard中,你有一个UITableViewController子类,叫做MyTableViewController,还有一个自定义动态UITableViewCell,叫做MyTableViewCell,标识符id为MyCell。
如果你像这样创建你的自定义UITableViewController:
MyTableViewController *myTableViewController = [[MyTableViewController alloc] init];
它不会自动为你注册你的自定义tableviewcell。您必须手动注册它。
但是如果你使用storyboard来实例化MyTableViewController,像这样:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
MyTableViewController *myTableViewController = [storyboard instantiateViewControllerWithIdentifier:@"MyTableViewController"];
好事发生了!UITableViewController会自动注册你在storyboard中定义的自定义tableview单元格。
在你的委托方法"cellForRowAtIndexPath"中,你可以像这样创建你的表格视图单元格:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"MyCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
//Configure your cell here ...
return cell;
}
如果循环队列中没有可重用的单元格,dequeueReusableCellWithIdentifier将自动为您创建新的单元格。
那么你就完成了!
我在Objective C和Swift中都给出了答案。在这之前我想说
如果我们使用dequeueReusableCellWithIdentifier:forIndexPath:,我们必须在调用这个方法as之前使用registerNib:forCellReuseIdentifier:或registerClass:forCellReuseIdentifier:方法注册一个类或nib文件
苹果文档说
所以我们添加registerNib:forCellReuseIdentifier:或registerClass:forCellReuseIdentifier:
一旦我们为指定的标识符注册了一个类,并且必须创建一个新的单元格,这个方法通过调用它的initWithStyle:reuseIdentifier:方法来初始化单元格。对于基于nib的单元格,此方法从提供的nib文件加载cell对象。如果已有的单元格可供重用,则此方法转而调用该单元格的prepareForReuse方法。
在viewDidLoad方法中,我们应该注册单元格
Objective - C
选项1:
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
选项2:
[self.tableView registerNib:[UINib nibWithNibName:@"CustomCell" bundle:nil] forCellReuseIdentifier:@"cell"];
在上面的代码nibWithNibName:@“CustomCell”给你的nib名字,而不是我的nib名字CustomCell
斯威夫特
选项1:
tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
选项2:
tableView.registerNib(UINib(nibName: "NameInput", bundle: nil), forCellReuseIdentifier: "Cell")
在上面的代码nibName:"NameInput"给出你的nib名称