在UITableViewCell中更改accessoryView的背景颜色

时间:2015-02-01 23:56:05

标签: ios objective-c uitableview custom-cell accessoryview

我有一个自定义单元格(不使用xib),我试图更改附件视图的背景颜色。这是我的代码和我尝试的内容"

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

    cell.accessoryView.backgroundColor = [UIColor redColor];

    return cell;
}

结果:

背景颜色没有变化。

1 个答案:

答案 0 :(得分:1)

您可以通过两种方式之一完成此操作。您可以更改表格视图的色调颜色,这将改变附件的颜色,或者您可以拖动任何所需的视图或控件,并将其颜色更改为您想要的颜色。