菜鸟教程小白 发表于 2022-12-13 04:22:26

ios - 在 iOS 7 中更改 uitableviewcell 的背景颜色


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

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

<pre><code>- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString* type=[cardType];
    if (){
      cell.backgroundColor = ;
    }
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我认为在 <code>tableView: cellForRowAtIndexPath:</code> 方法中进行单元格自定义会更好。在这种方法中,</p>

<pre><code>if ()
{
    cell.backgroundColor = ;
}
else // this else is important. If you add this, scrolling works fine.
{
    cell.backgroundColor = ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 7 中更改 uitableviewcell 的背景颜色,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19099438/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19099438/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 7 中更改 uitableviewcell 的背景颜色