清除 UITableViewCell 的背景颜色?
Posted
技术标签:
【中文标题】清除 UITableViewCell 的背景颜色?【英文标题】:Clearing background color of UITableViewCell? 【发布时间】:2011-12-29 09:08:31 【问题描述】:我在 UITableView 部分加载所有数据。 我得到了上面屏幕的结果。我想删除表格单元格的黑色补丁(背景颜色)。 为此,我在 cellForRowAtIndexPath 方法中编写了以下代码
cell.backgroundColor = [UIColor whiteColor];
[cell setOpaque:NO];
NSDictionary *name = [[self.sections valueForKey:[[[self.sections allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] objectAtIndex:indexPath.section]] objectAtIndex:indexPath.row];
[cell.textLabel setFont:[UIFont systemFontOfSize:15.0f]];
[cell.textLabel setText:[name objectForKey:@"Name"]];
我的笔尖文件是
我仍然给出相同的结果。此代码和 nib 设置在 iPhone 模拟器上运行良好,但在 iPhone 上却不行。 请问为什么会发生这种情况,我要去哪里出错? 我该如何解决这个问题?
提前致谢。
【问题讨论】:
尝试更改属性背景,在您的笔尖中,使其成为清晰的颜色或白色 【参考方案1】:更改视图的背景,在您的笔尖中,将其设置为清晰的颜色或白色
也试试
在 CellForRowAtIndexPath 方法中,如 tableView.backgroundColor = [UIColor clearColor];
【讨论】:
【参考方案2】:嗨 RRB
您必须设置 tableView.backgroundColor 运行时的 clearColor 不在 xib 中。
【讨论】:
以上是关于清除 UITableViewCell 的背景颜色?的主要内容,如果未能解决你的问题,请参考以下文章
UITableViewCell 背景颜色仅适用于预设颜色方法