美文网首页
iOS UITableView自定义分割线

iOS UITableView自定义分割线

作者: 傲娇喵117 | 来源:发表于2017-01-06 15:14 被阅读0次

    1.在cell重写

    - (void)drawRect:(CGRect)rect

    {

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [UIColor clearColor].CGColor);

    CGContextFillRect(context, rect);

    //    //上分割线,

    //    CGContextSetStrokeColorWithColor(context, NAVBAR_BACKGROUND_COLOR.CGColor);

    //    CGContextStrokeRect(context, CGRectMake(5, -1, rect.size.width - 10, 1));

    //下分割线  NAVBAR_BACKGROUND_COLOR 你想要的颜色

    CGContextSetStrokeColorWithColor(context, NAVBAR_BACKGROUND_COLOR.CGColor);

    CGContextStrokeRect(context, CGRectMake(5, rect.size.height, rect.size.width - 10, 1));

    }

    2.将tableView设置成

    tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    相关文章

      网友评论

          本文标题:iOS UITableView自定义分割线

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