iOS 7中的UITableView没有侧边框。我尝试了以下更改边框颜色和宽度:
tableView.layer.masksToBounds=YES;
tableView.layer.borderWidth = 1.0f;
tableView.layer.borderColor = [UIColor whiteColor].CGColor;
我仍然没有获得UITableView的边框。
tableView.separatorColor
即使设置此功能也无济于事。
答案 0 :(得分:0)
#import <QuartzCore/QuartzCore.h>
tableView.layer.borderWidth = 1.0f;
tableView.layer.borderColor = [UIColor redColor].CGColor;