如何为UITableView iOS 7设置边框?

时间:2014-03-31 07:54:52

标签: uitableview ios7 ios7.1

iOS 7中的UITableView没有侧边框。我尝试了以下更改边框颜色和宽度:

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

我仍然没有获得UITableView的边框。

tableView.separatorColor

即使设置此功能也无济于事。

1 个答案:

答案 0 :(得分:0)

#import <QuartzCore/QuartzCore.h>

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