1
-(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'
4

1 回答 1

1

根据文档

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];

IE; 没有forIndexPath:indexPath也可以。

于 2012-12-27T09:30:38.240 回答