它在 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 中,我将 File's Owner 设置为我的表格视图控制器。我在我的表格视图控制器中正确地制作了一个插座作为 nibLoadCellForListDetails 。