1
A
回答
9
添加一個UIImageView到視圖,ontop那個地方的UITableView並設置背景顏色爲clearcolor。
14
使用此
UIImageView *imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"cloud.png"] ];
self.tableView.backgroundView = imageView;
[imageView release];
self.tableView.backgroundColor = [UIColor clearColor];
2
您也可以繼續直接設置背景色:
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.jpg"]];
相關問題
- 1. iPhone - UITableView的背景
- 2. UITableView部分背景?
- 3. UITableView背景問題
- 4. UITableView背景圖片
- 5. UITableView淡入背景
- 6. 的UITableView細胞背景
- 7. UITableView的背景圖像 - iOS
- 8. 更改UITableView的背景色
- 9. UITableView的漸變背景
- 10. 集UITableView的背景視圖
- 11. 背景圖像背後的一個uitableview
- 12. UITableView空背景調用
- 13. UITableView「浮動」在背景上
- 14. 設計UITableView背景圖像
- 15. UITableview背景顏色-iphone
- 16. UITableView:獲取背景顏色
- 17. UITableView堆疊/陰影背景
- 18. UITableView分組背景圖片
- 19. iPhone Dev,UITableView背景顏色
- 20. UITableView節索引背景?
- 21. UITableView背景圖像問題
- 22. 如何使UIViewController背景看起來像分組UITableView的背景?
- 23. 的UITableView與滾動的背景圖案
- 24. IOS的UITableView細胞選擇的背景
- 25. StyledStringElement UITableView中的交替背景
- 26. 分組的UITableView透明背景 - iPhone
- 27. 的UITableView細胞背景顏色
- 28. 在UITableview上閃爍的背景
- 29. iPad上UITableView的背景圖像
- 30. 問題用的UITableView細胞背景
+1:好和快速的方法。 – Jhaliya 2011-05-31 13:07:28
你也可以使用' - [UIColor colorWithPatternImage:UIImage];' – 2011-05-31 13:08:34
爲單個單元格的背景分配圖像Pallavi的其他答案是正確的。 – TheBlack 2011-05-31 13:16:41