2012-07-30 103 views
0

嗨,任何人都可以告訴我如何刪除mY UITableView GroupStyle角落處的黑色邊緣。我爲我的UITableView Cell創建了一個自定義視圖。我已經嘗試過這個代碼,但它在IOS 5中工作,而不是在IOS 4.0中工作問題是我已經嘗試了所有建議的解決方案請幫助!
self.tableView = [UIColor ClearColor]; in viewDidLoad在IOS 5中工作而不在IOS 4中有什麼問題。
當我在模擬器5.1上運行它時,它不顯示黑色邊緣,但在simultor 4.3中顯示黑色邊緣。請幫助從IOS 4.0中的UITableViewGroupedStyle中刪除黑色邊緣

回答

0

從細胞中刪除邊框:

tableView.separatorStyle = UITableViewCellSeparatorStyleNone; 
+0

我不想刪除邊框,我只是想刪除角落上的黑色邊緣。但任何方式,這不適合我。問題是,在ios 5中沒有這樣的黑色角落,但在ios 4中顯示這些角落 – 2012-07-30 07:45:38

+0

不確定,但嘗試: 'tableView.backgroundColor = [UIColor clearColor];' – 2012-07-30 07:52:58

+0

實際上這對我不起作用 – 2012-07-30 07:56:10

0

在代碼:

tableView.backgroundView = nil; 

如果您通過廈門國際銀行將表:

SeparatorStyle =單

0

謝謝大家 幫我。

其實這個工作對我來說

self.tableView backgroundcolor = [UIColor ClearColor]; 

,但我缺少的tableView的IBOutlet,所以我帶接口Builder進行連接的tableview的財產是對我的工作!

0

我用新視圖替換了tableView的backgroundView。

我然後依靠的tableView的backgroundColor屬性來設置我想要的顏色:

self.tableView.backgroundView = [[[UIView的頁頭] INIT]自動釋放]; self.tableView.backgroundColor = [UIColor whiteColor];