2014-03-31 83 views
1

沒有爲iOS中7。我曾嘗試以下更改邊框顏色和寬度的UITableView沒有側鑲邊:如何爲UITableView iOS 7設置邊框?

tableView.layer.masksToBounds=YES; 
tableView.layer.borderWidth = 1.0f; 
tableView.layer.borderColor = [UIColor whiteColor].CGColor; 

我仍然沒有得到邊境的UITableView。

tableView.separatorColor 

即使設置這也無濟於事。

回答

0
#import <QuartzCore/QuartzCore.h> 

tableView.layer.borderWidth = 1.0f; 
tableView.layer.borderColor = [UIColor redColor].CGColor; 
+0

這並沒有幫助 –

+0

@ArunB:使用此代碼可以使UITableView的 –

+0

的邊框做了導入「QuartzCore/QuartzCore.h」框架 –