我在uiview中使用uitableview和scrollview。如何設置表格或滾動視圖的邊框?爲uitableview創建邊框
22
A
回答
75
#import "QuartzCore/QuartzCore.h"
然後在viewDidLoad
使用,
tableView.layer.borderWidth = 2.0;
注意
您還可以設置邊框顏色:
tableView.layer.borderColor = [UIColor redColor].CGColor;
它應該爲你工作。 :)
9
這工作很適合我:
CALayer *layer = _tableView.layer;
[layer setMasksToBounds:YES];
[layer setCornerRadius: 4.0];
[layer setBorderWidth:1.0];
[layer setBorderColor:[[UIColor colorWithWhite: 0.8 alpha: 1.0] CGColor]];
圓角邊框顯得稍微的iOS。
1
,如果你想給邊境顏色泰伯維,使用下面的代碼爲 迅速3
yourTableViewName.layer.borderColor = UIColor.gray.cgColor
yourTableViewName.layer.borderWidth = 1.0
相關問題
- 1. 爲UIImageView創建邊界框
- 2. UITableView部分邊框
- 3. 爲每個邊框創建邊框漸變
- 4. 爲什麼CreateWindowEx WS_POPUP創建邊框?
- 5. 如何爲圖像創建邊框?
- 6. 爲JEditorPane文本框創建左邊距
- 7. 創建UIImage作爲邊框顏色
- 8. 爲div創建邊框半徑
- 9. 爲什麼我不能創建邊框
- 10. 爲數獨謎題創建邊框線
- 11. 爲UITableView設置三面邊框 - IOS
- 12. 如何爲UITableView iOS 7設置邊框?
- 13. 如何爲UITableView設置邊框?
- 14. 未創建CCTouch邊界框
- 15. 無法創建表邊框
- 16. 在ListView中創建邊框
- 17. 創建邊框縫隙
- 18. 創建虛擬邊框
- 19. 創建對角線邊框
- 20. 在GUI上創建邊框
- 21. 創建邊框對象
- 22. 使用System.out.println()創建邊框
- 23. unity3d創建表格邊框
- 24. 爲UITableView創建陰影
- 25. UITableView的圓角邊框?
- 26. UITableView單面邊框顏色?
- 27. 奇怪的邊框在UITableView
- 28. UITableView周圍的邊框
- 29. Swift UITableView鋸齒邊框
- 30. 創建一個相框邊框類型
許多THX其工作... – ravoorinandan 2010-12-02 10:07:05
還有一個tableView.layer.borderColor屬性(CGColorRef),就像你所期望的那樣。 – bneely 2012-04-18 00:39:32