基本的分隔符看起來非常簡單,只有一個區別,但大多數表格視圖都有一個好看的分隔符,我看起來很好,因爲它有陰影或使它看起來像3D的東西。他們如何呢?如何創建UITableView分隔符看起來不錯?
2
A
回答
2
你可以用編程方式/ XIB創建你的表。 現在,無論是在你的代碼或XIB集:
yourTable.separatorStyle=UITableViewCellSeparatorStyleNone;
現在
中的tableview委託方法:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:Identifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:businessLogicIdentifier]
autorelease];
customSeperator=[[UIView alloc]initWithFrame:CGRectMake(0, (cell.frame.origin.y), 320, 1)];
customSeperator.backgroundColor=[UIColor lightGrayColor];
[cell.contentView addSubview:customSeperator];
}
現在線(customSeperator.backgroundColor =的UIColor lightGrayColor]),你也可以嘗試
[UIColor colorWithPatternImage:[UIImage imageNamed:@"myimage.png"]];
使用您自己的圖像。 希望它能幫助你
相關問題
- 1. 如何使UITableView看起來像這樣
- 2. 如何使UITableView看起來像這樣?
- 3. 創建LiveTile圖像 - 在屏幕上看起來不錯 - 看起來不錯如LiveTile
- 4. 創建自定義的UITableView分隔線
- 5. 如何創建制表符分隔CSV?
- 6. 如何動畫UITableView分隔符淡出?
- 7. MySQL表創建錯誤(語法看起來不錯)
- 8. 使UICollectionView看起來像UITableView
- 9. 如何使UIViewController背景看起來像分組UITableView的背景?
- 10. UITableView分隔符在錯誤的位置
- 11. 創建一個分隔符
- 12. 創建固體分隔符
- 13. 創建DataGrid列分隔符
- 14. 如何使動態uitableview單元格看起來像靜態uitableview
- 15. UITableView分隔符樣式IB中沒有不起作用
- 16. 設置UITableView分隔符插入零不起作用
- 17. UITableView分隔符問題
- 18. 消除uitableview tablefooterview分隔符
- 19. 我該如何創建一個看起來不像素且看起來更老的更好看的GUI?
- 20. 如何使長SQL字符串看起來不錯
- 21. 創建一個RSS2飼料,看起來不錯,但不起作用?
- 22. 刪除分組UITableView中的分隔符
- 23. UITableView分隔線
- 24. 看起來<hr>創建新行
- 25. 如何將命令行參數與分隔符連接起來
- 26. 如何在PHP中創建連字符分隔的字符串
- 27. 如何爲QR碼創建制表符分隔的字符串?
- 28. 如何在Informatica Cloud中創建多字符分隔符?
- 29. 自定義UITableView看起來像UIPickerView
- 30. 如何對製表符分隔出來?
http://stackoverflow.com/questions/1374990/how-to-customize-tableview-seperator-in-iphone http://stackoverflow.com/questions/2227420/iphone-uitableview-放置圖像的分隔符 http://stackoverflow.com/questions/4804632/uitableview-separator-line – 2012-04-18 09:58:44