重複の可能性:
グループ化されたUITableViewの背景を変更
UITableViewStyleGrouped
の場合、UITableViewの背景色を変更できません。私のコード:
[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
の背景色を設定するとどうなるか試してみてください。