UIAccessoryView未显示在分区表中

时间:2014-10-14 01:34:39

标签: ios uitableview

我无法在UITableView单元格中显示任何附件:

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    cell.textLabel.text = @"Foo";
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    return cell;
}

更改单元格样式没有任何区别。这里发生了什么?

1 个答案:

答案 0 :(得分:0)

删除然后创建新文件解决了问题。

这是因为已经开始使用xib文件,然后将其删除以支持以编程方式执行整个操作。不知何故,在删除xib之后,一些委托设置停滞不前。