-(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:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSString *currentNames = [nameKeys objectAtIndex:indexPath.row];
[cell.textLabel setText:currentNames];
return cell;
}
为什么我收到以下错误(我使用.XIB
而不是故事板iOS 6和Xcode 4.5)。
我确实已连接datasource
并从连接检查器ot文件所有者委派。
错误:
Assertion failure in -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:], /SourceCache/UIKit_Sim/UIKit-2372/UITableView.m:4460
2012-12-27 11:35:45.146 TableViewWithXib[570: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'
答案 0 :(得分:1)
根据docs,
You must register a class or nib file using the
registerNib:forCellReuseIdentifier: or registerClass:forCellReuseIdentifier:
method before calling,
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
因此,如果你没有使用nib文件,那么使用
UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:CellIdentifier];
即;没有forIndexPath:indexPath
也可以。