gpt4 book ai didi

ios - 由于 UITableView dataSource 必须从 tableView :cellForRowAtIndexPath: in iOS 5. 1 模拟器返回一个单元格,应用程序崩溃

转载 作者:行者123 更新时间:2023-11-29 04:01:39 26 4
gpt4 key购买 nike

它在 iOS 6 模拟器上运行良好。在 iOS 5.1 模拟器上,当我第一次运行它时,它由于以下异常而崩溃。

* 由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“UITableView 数据源必须从 tableView:cellForRowAtIndexPath: 返回一个单元格”

这是我的代码

- (UITableViewCell *)tableView:(UITableView *)theTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"Cell";

cell = [theTableView dequeueReusableCellWithIdentifier:cellIdentifier];

if (cell == nil) {
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
[[NSBundle mainBundle] loadNibNamed:@"listTableCell" owner:self options:NULL];
}
else{
[[NSBundle mainBundle] loadNibNamed:@"listTableCell_iPad" owner:self options:NULL];
}
cell = nibLoadCellForListDetails;
}
return cell;
}

在 listTableCell.xib 中,我将文件的所有者设置为我的 TableView Controller 。我在我的 TableView Controller 中正确地创建了一个 socket 作为 nibLoadCellForListDetails 。

最佳答案

看起来实际上没有创建任何单元格。添加:

UITableViewCell *cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

而不是:

cell = [theTableView dequeueReusableCellWithIdentifier:cellIdentifier];

关于ios - 由于 UITableView dataSource 必须从 tableView :cellForRowAtIndexPath: in iOS 5. 1 模拟器返回一个单元格,应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15785629/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com