OStack程序员社区-中国程序员成长平台

标题: ios - 在 iOS 7 中更改 uitableviewcell 的背景颜色 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 04:22
标题: ios - 在 iOS 7 中更改 uitableviewcell 的背景颜色

我在升级到 iOS7 后出现了一个问题,当我尝试更改特定 tableview 单元格的背景颜色时,它不会为正确的单元格着色(通常是指定的单元格以及其他单元格) .正如您从下面的代码中看到的那样,我定义了要突出显示的类型,然后更改颜色。它在 iOS 升级之前运行良好,所以我不确定是什么改变导致了这个:

快速编辑:另外,当我向下滚动表格 View 然后再向上滚动时,它会为更多在表格 View Controller 首次加载时未着色的单元格着色(如果这有帮助的话)。

- (void)tableViewUITableView *)tableView willDisplayCellUITableViewCell *)cell forRowAtIndexPathNSIndexPath *)indexPath {
    NSString* type=[[self.HandPointer.player_hand objectAtIndex:indexPath.row]cardType];
    if ([type isEqualToString"ace"]){
        cell.backgroundColor = [UIColor colorWithRed:0.81 green:0.91 blue:0.81 alpha:1.0];
    }
}



Best Answer-推荐答案


我认为在 tableView: cellForRowAtIndexPath: 方法中进行单元格自定义会更好。在这种方法中,

if ([type isEqualToString"ace"])
{
    cell.backgroundColor = [UIColor aceColor];
}
else // this else is important. If you add this, scrolling works fine.
{
    cell.backgroundColor = [UIColor otherCellColor];
}

关于ios - 在 iOS 7 中更改 uitableviewcell 的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19099438/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4