我有一个分组的 tableView,我正在尝试将默认背景更改为自定义颜色。我已经看过了,最接近工作的是:
- (void)viewDidLoad {
UIColor *backgroundColor = [UIColor colorWithRed:181 green:293 blue:223 alpha:0];
self.tableView.backgroundView = [[UIView alloc]initWithFrame:self.tableView.bounds];
self.tableView.backgroundView.backgroundColor = backgroundColor;
}
此代码将背景更改为白色,但我无法将其更改为自定义颜色。有人可以帮我吗?