2012-11-05 69 views
1

我正在處理代碼,我想從UITableViewController中刪除分隔符。我可以使用正常的viewcontroller並添加一個表格視圖來做到這一點,但不是當我使用UITableViewController時。接口Builder不會更改分隔符值。如何從表格視圖中刪除分隔符控制器

+0

[self.tableView setSeparatorColor:[UIColor clearColor]];在viewDidLoad中? – iDev

回答

2

,您可以將其刪除編碼

self.tableview.separatorStyle = UITableViewCellSeparatorStyleNone; 

或在廈門國際銀行和變化分隔符樣式選擇的tableview

+0

我無法更改xib中的分隔符樣式。聲明也無效。也許這是因爲這是默認的表視圖控制器,因此在xib中,我們無法篡改它。 – HakunaMatata

3

如果您的Xid刪除分隔符,PLZ看到圖像,並使用 enter image description here

和清理背景

enter image description here

,如果你想從代碼更改,然後使用

self.tblview.separatorStyle = UITableViewCellSeparatorStyleNone; 
+0

感謝您的清晰顏色 – djserva

1
my_tableView.separatorStyle = UITableViewCellSeparatorStyleNone; 

否則

XIB的tableview屬性中選擇NONE風格財產。

0

我試過在viewDidLoad.中使用它,它適用於我。

[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; 

如果它不爲你工作,你可以檢查,如果你已經創建了廈門國際銀行的UITableViewControler正常。

相關問題