TableView 自定义万能分割线

IOS6没有, iOS7 新出的属性:UIEdgeInsetsseparatorInsetNS_AVAILABLE_IOS(7_0)

separatorInset = zero;

iOS7没有,iOS8 新出的属性:UIEdgeInsetslayoutMarginsNS_AVAILABLE_IOS(8_0); //默认添加20间距

那么问题来了,怎么适配度版本:  修改tableview背景色,重写cell setframe,高度缩短一点点.


1.先取消系统的分割线

self.tableView.separatorStyle=UITableViewCellSeparatorStyleNone;

2.设置tableView的背景色 

self.tableView.backgroundColor=LMColor(206,206,206);

3.修改cell的高度

- (void)setFrame:(CGRect)frame

{

frame.size.height-=1;

[supersetFrame:frame];

}

你可能感兴趣的:(TableView 自定义万能分割线)