0

我的 TableView 有一个自定义单元格,上面有一个 ImageView。

在此处输入图像描述

为什么 ImageView 仅在单元格突出显示时可见?

在此处输入图像描述

细胞是这样创建的:

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

    Site *site = [self.dataController objectInListAtIndex:indexPath.row];

    [[cell textLabel] setText:site.description];
    return cell;
}
4

2 回答 2

2

签出:自定义 UITableViewCell (IB) 仅显示在选定状态

它的快速概要“填充标准 UITableViewCell.textLabel.text 似乎覆盖了 PrototypeCells”。所以看起来你必须创建并添加一个不同的文本标签。

于 2013-01-31T14:43:23.693 回答
0

也许您UIImageView是突出显示的背景视图的子视图,仅在选择单元格时可见?

于 2013-01-31T14:35:40.203 回答