我使用UITableView
而没有设置任何背景颜色但是当我从iOS6升级到iOS7时,我发现UITableView
行为不端。问题是它的背景颜色。
答案 0 :(得分:0)
您需要将tableview背景颜色设置如下
tableView.backgroundView = nil;
tableView.backgroundColor = [UIColor redColor];
答案 1 :(得分:0)
在iOS7 UITableView中,默认背景颜色为clearColor。因此,您可以通过添加viewDidLoad方法按以下方式更改它:
self.tableView.backgroundColor = [UIColor yellowColor];
这是一个很好的参考
UITableViewCell show white background and cannot be modified on iOS7
答案 2 :(得分:0)
尝试在表格视图可见后设置背景颜色。