我正在設置UITableView
分組圖像,但它顯示了整個表我想它應該在第二個表中應該像 它應該只背景圖像區域的單元格和表格不是灰色邊框在第二個表謝謝。UITableView分組背景圖片
0
A
回答
4
使用以下代碼。
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"Background.png"]];
對於另一種方式來設置分組UITableView
backgroung圖像讀取This documentation.
1
UIImageView *tempImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"TableViewBackground.png"]];
[tempImageView setFrame:self.tableView.frame];
self.tableView.backgroundView = tempImageView;
[tempImageView release];
-2
而不是給背景圖像以table.Provide背景圖像/色彩到細胞。
cell.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"Background.png"]];
since colorWithPattern is very expensive which causes memory leak,avoid using colorWithPatternImage
instead you can use
cell.backgroundColor=[UIColor initWithRed:0.25 green:0.25 blue:0.25 alpha:1];
//change the RGB as per the image
相關問題
- 1. UITableView背景圖片
- 2. 分組UITableView的部分背景
- 3. UITableView部分背景?
- 4. 滾動UITableView的背景圖片?
- 5. 分組的UITableView透明背景 - iPhone
- 6. iPhone - UITableView分組時清晰的背景?
- 7. 背景爲iphone sdk分組的uitableview
- 8. UITableView(分組樣式)背景顏色
- 9. 如何使UIViewController背景看起來像分組UITableView的背景?
- 10. 背景圖片
- 11. 背景圖片
- 12. 背景圖片
- 13. 背景圖片上的背景圖像
- 14. 無法擺脫分組背景顏色在分組UITableView
- 15. 分組UITableView上的自定義背景圖像
- 16. UITableView的背景圖像 - iOS
- 17. 設計UITableView背景圖像
- 18. UITableView背景圖像問題
- 19. 集UITableView的背景視圖
- 20. 如何爲分組表格視圖設置背景圖片?
- 21. Jumbotron背景圖片
- 22. QLineEdit背景圖片
- 23. JOptionPane背景圖片
- 24. UIProgressView背景圖片
- 25. 多背景圖片
- 26. JPanel背景圖片
- 27. Bootstrap背景圖片
- 28. UITableViewController背景圖片
- 29. AndEngine背景圖片
- 30. Joomla背景圖片?
但它添加側形象也爲分組表 – 2013-02-25 06:45:06
@ NaziaJan-試試這個代碼???可能解決您的問題:) – iPatel 2013-02-25 06:46:27
它不工作 – 2013-02-25 06:54:40