gpt4 book ai didi

ios - UITableViewCell backgroundView 绘制矩形未被调用

转载 作者:行者123 更新时间:2023-11-29 03:20:53 27 4
gpt4 key购买 nike

我很难让单元格的 backgroundView 显示出来。

代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// assume cell is dequeued correctly (i.e. cell != nil)

UIView *backgroundView = [[UIView alloc] initWithFrame:cell.frame];
backgroundView.backgroundColor = [UIColor yellowColor];
cell.backgroundView = backgroundView;
[cell.backgroundView setNeedsDisplay];

return cell;
}

我还在 - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath 中尝试过这个。仍然没有运气。

我尝试子类化用作背景 View 的 UIView 对象,并确认永远不会调用 drawRect

最佳答案

您可能不应该在 UITableViewCell 自己的 drawRect 中执行此操作。相反,创建自定义 UIView 并将其添加为 subview 。

另见 answer

如果您所做的只是尝试设置 tableView 单元格的颜色,那么只需将单元格的.ContentView 设置为所需的颜色即可。

关于ios - UITableViewCell backgroundView 绘制矩形未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21107651/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com