可能重複:
Change background of a grouped UITableView設置背景顏色在IOS 6
我不能夠改變的UITableView的背景顏色,如果它是。 我的代碼:
[addressNewTbl setBackgroundColor:[UIColor redColor]];
幫助!
可能重複:
Change background of a grouped UITableView設置背景顏色在IOS 6
我不能夠改變的UITableView的背景顏色,如果它是。 我的代碼:
[addressNewTbl setBackgroundColor:[UIColor redColor]];
幫助!
您可能需要添加一些代碼。 嘗試 -
[UITableView setBackgroundView: nil];
,或者你也可以這樣做:
UIView* bview = [[UIView alloc] init];
bview.backgroundColor = [UIColor yellowColor];
[tableView setBackgroundView:bview];
雙方將工作..
您還需要禁用背景視圖:
[addressNewTbl setBackgroundView:nil];
你嘗試
addressNewTbl.backgroundView = nil;
[addressNewTbl setBackgroundColor:[UIColor redColor]];
而不是設置整個UITableView
的背景顏色,嘗試當你發生了什麼設置其backgroundView
的背景顏色。
中的cellForRowAtIndexPath數據源method.try設置
[cell setBackgroundColor:[UIcolor redColor]];
OP是關於表的背景不是單元格的背景.. – Maulik
歡迎棧。如果你有答案,那麼你應該接受這個答案... – Maulik