美文网首页
TableView 自定义万能分割线

TableView 自定义万能分割线

作者: KeepFighting | 来源:发表于2016-02-09 12:46 被阅读148次

    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 自定义万能分割线

          本文链接:https://www.haomeiwen.com/subject/wgiykttx.html