自定义UITableViewCell IOS

时间:2012-10-15 15:44:39

标签: ios uitableview background-color

目前我的单元格如下:http://tinypic.com/view.php?pic=344uz2a&s=6

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

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

- (void)viewDidLoad{

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

在下面的方法中,我尝试设置单元格backgroundColor。不幸的是,如上所述,它拒绝在单元格中将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;
}

有什么想法吗?我错过了什么或者我该怎么做才能解决这个“颜色”问题?关于Thanx的问题

2 个答案:

答案 0 :(得分:1)

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

self.accessoryView.backgroundColor = [UIColor whiteColor];

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

答案 1 :(得分:0)

尝试

cell.backgroundView.backgroundColor = [UIColor whiteColor];

cell.backgroundView.layer.backgroundColor = [UIColor whiteColor].CGColor;