我已經嘗試了所有的方式,但無法成功設置TableView的backgroundColor。當父視圖控制器爲UIViewContoller
時, 設置爲tableView.backgroundColor
和/或cell.backgroundColor
到clearColor
不起作用。如何設置tableView的背景顏色
我的筆尖文件結構
FileOwner
View
UITableView
(注:我設置的TableView到groupedTable節)
第一次嘗試,我在代碼viewDidLoad
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 160, 300)] autorelease;
[view setBackgroundColor:UIColor blueColor]; // color it just to see if it is created at the right place
[self.tableView sendSubViewToBack:view];
它創造了UIView
工程,但它隱藏細胞的內容。我能夠看到標題的內容,但不能看到單元格內容。 (但是,當我改變視角(0150160300的座標),那麼我能夠看到單元格的內容,但隨後失去的tableview的backgroundColor。
第二次嘗試, 我創建了ImageView的
View
ImageView
UITableView
並設置self.tableView.backgroundColor = [UIColor clearColor];
但沒有奏效
我用Google搜索,但沒有和平答案
是否有這個問題的答案? – Caipivara 2014-12-19 22:22:10