16

我收到以下错误:

*由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“无法使具有标识符 FontCell 的单元格出列 - 必须为标识符注册一个 nib 或类或连接故事板中的原型单元格”

我不确定我做错了什么。我设置了单元格标识符(以编程方式,因为它不是通过 Interface Builder 创建的)并执行了我认为应该在委托方法中执行的所有操作,但是当我尝试加载 UITableView 时仍然出现该错误。

这是相关代码(值得注意的是,我将 UITableViewCell 子类化为自定义选项):

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.fonts.count;
}

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

    FontCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];

    if (!cell) {
        cell = [[FontCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"FontCell"];
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
    }

    int row = indexPath.row;

    cell.fontFamilyLabel.text = self.fonts[row];

    return cell;
}

这是我在子类 UITableViewCell (FontCell) 中更改的唯一方法:

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        self.fontFamilyLabel = [[UILabel alloc] initWithFrame:CGRectMake(5, 5, 200, 20)];
        self.fontFamilyLabel.textAlignment = NSTextAlignmentCenter;

        [self.contentView addSubview:self.fontFamilyLabel];
    }
    return self;
}

我到底做错了什么?

4

4 回答 4

27

最简单的解决方法是将其更改为与您当前的代码一样,如果您使用此方法FontCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier]; ,您必须检查以确保cell不是。nil


或者,您可以在绑定到的表级别注册UINibClass@"FontCell"

例如(上viewDidLoad):

[self.tableView registerClass: [FontCell class] forCellReuseIdentifier:@"FontCell"];

然后你可以做

FontCell *cell = [tableView dequeueReusableCellWithIdentifier:@"FontCell" forIndexPath:indexPath];

这种方法的好处是您知道您的单元格永远不会是nil,因此您可以立即开始修改它。

于 2013-04-02T20:05:15.297 回答
4

您正在使用该dequeueReusableCellWithIdentifier:forIndexPath:方法。该方法的文档说明了这一点:

You must register a class or nib file using the registerNib:forCellReuseIdentifier: or registerClass:forCellReuseIdentifier: method before calling this method.

所以在这里

[self.tableView registerClass: [FontCell class] forReuseIdentifier: @"FontCell"];
于 2013-04-02T20:06:25.763 回答
2

我也遇到了这样的问题,我找到的解决方法是:

转到项目导航器并选择“ViewController.h”。附加

 <UITableViewDelegate, UITableViewDataSource>

在“UIViewController”之后。

于 2013-05-08T05:31:31.267 回答
1

如果像我一样使用表格视图(不是表格视图控制器),则默认情况下不会出现单元格。

在情节提要中选择表格视图 打开属性检查器 将原型单元格从 0 更改为 1 选择新显示的表格单元格 在属性检查器中将标识符设置为“FontCell”

于 2014-06-12T16:05:54.000 回答