0
我有一個具有背景圖像的UITableViewController。我設置的圖像這樣的實現代碼如下:iPhone SDK:透明tableviewcell不透明?
[self.view setBackgroundColor: [UIColor colorWithPatternImage:
[UIImage imageWithContentsOfFile:
[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:
@"background1.jpg"]]]];
的問題是,我的每一個定製的tableview細胞得到相同的背景圖片 - 這是重複每個單元格。作爲一項測試,我嘗試將我的單元格中的所有元素都設置爲0.0,但儘管如此,儘管我無法看到每個單元格中的任何標籤,但我仍然可以在每個單元格中看到重複的背景圖像:
cell.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = [UIColor clearColor];
cell.contentView.alpha = 0.0;
cell.alpha = 0.0;
任何有關如何讓我的桌子背景圖像停止在每個單元格中重複的建議將不勝感激!