可能重复:
更改分组 UITableView 的背景
如果是,我无法更改 UITableView 的背景颜色UITableViewStyleGrouped
。我的代码:
[addressNewTbl setBackgroundColor:[UIColor redColor]];
帮助!
可能重复:
更改分组 UITableView 的背景
如果是,我无法更改 UITableView 的背景颜色UITableViewStyleGrouped
。我的代码:
[addressNewTbl setBackgroundColor:[UIColor redColor]];
帮助!
您可能需要添加一些代码。尝试 -
[UITableView setBackgroundView: nil];
或者你也可以这样做:
UIView* bview = [[UIView alloc] init];
bview.backgroundColor = [UIColor yellowColor];
[tableView setBackgroundView:bview];
两者都会工作..
你试过了吗
addressNewTbl.backgroundView = nil;
[addressNewTbl setBackgroundColor:[UIColor redColor]];
您还需要禁用背景视图:
[addressNewTbl setBackgroundView:nil];
与其设置整个 的背景颜色,不如UITableView
尝试设置其背景颜色时发生的情况backgroundView
。
在 cellForRowAtIndexPath 数据源 method.try 设置
[cell setBackgroundColor:[UIcolor redColor]];