0

我正在使用下面的代码直接从 xib 加载一个单元格,但问题是即使我在 xib 中设置了单元格的背景颜色也没有显示,我也在通过代码设置它。任何人都可以指导我解决这个问题。

我想知道为什么它没有显示在 xib 中设置的背景颜色

    static NSString *cellIdentifier = @"GameCell123";

UITableViewCell *cell = [tableViewTemp dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) 
{
    NSArray *array=[[NSBundle mainBundle] loadNibNamed:@"GameCell" owner:self options:nil];
    if (array !=nil && [array count]>0) 
    {
        cell=[array objectAtIndex:0];
    }
    [cell setAccessoryView:[cell viewWithTag:3]];
    [(UIButton *)[cell viewWithTag:assessoryButtonCellSubviewTag] addTarget:self action:@selector(teamsAccessoryButtonTap:event:) forControlEvents:UIControlEventTouchUpInside];

    cell.backgroundColor=[UIColor blueColor];
    //cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellIdentifier] autorelease];
    // seting teams button as accessory view; 
}
4

1 回答 1

0

如graver所示,更改 willDisplayCell 委托方法中的背景颜色:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    cell.backgroundColor = [UIColor blueColor];  
}
于 2012-04-18T09:38:56.423 回答