0

这是目前我的单元格的样子:http ://tinypic.com/view.php?pic=344uz2a&s=6

可以看出,由于某种原因,它拒绝用 backgroundColor 白色填充单元格的右侧部分。而且我不知道为什么或可能是什么问题?

这就是我实现 TableView / Cells 的方式。在 viewDidLoad 我将整个 tableView 设置为 clearColor 以隐藏“emptyCells”。

- (void)viewDidLoad{

 self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
 tableView.backgroundColor = [UIColor clearColor];
}

在下面的方法中,我尝试设置单元格背景颜色。不幸的是,如上所述,它拒绝在单元格中将 whiteColor 设置为右侧。

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

if (cell == nil)
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault  reuseIdentifier:CellIdentifier];
}
Task *task = [self.searchResults objectAtIndex:indexPath.row];

UILabel *nameLabel = (UILabel *)[cell viewWithTag:1];
UILabel *bookLabel = (UILabel *)[cell viewWithTag:2];
UILabel *chapterLabel = (UILabel *)[cell viewWithTag:3];

[nameLabel setText:task.name];
[bookLabel setText:task.book.name];
[chapterLabel setText:task.chapter.name];

cell.backgroundColor =  [UIColor whiteColor];
cell.contentView.backgroundColor =  [UIColor whiteColor];
cell.backgroundView.backgroundColor = [UIColor whiteColor];

return cell;
}

有任何想法吗?我错过了什么或者我能做些什么来解决这个“颜色”问题?致谢

4

2 回答 2

1

看起来您需要设置附件视图的背景颜色,如下所示:

self.accessoryView.backgroundColor = [UIColor whiteColor];

如果您查看背景视图的边界,它可能不会跨越整个表格单元格。

于 2012-10-15T16:23:59.770 回答
0

尝试

cell.backgroundView.backgroundColor = [UIColor whiteColor];

或者

cell.backgroundView.layer.backgroundColor = [UIColor whiteColor].CGColor;
于 2012-10-15T16:19:22.813 回答