码迷,mamicode.com
首页 > 其他好文 > 详细

view添加虚线边框

时间:2015-12-04 18:08:39      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

  CAShapeLayer *border = [CAShapeLayer layer];
       
        border.strokeColor = SLColorLine.CGColor;
       
        border.fillColor = nil;
       
        border.path = [UIBezierPath bezierPathWithRect:self.bounds].CGPath;
       
        border.frame = self.bounds;
       
        border.lineWidth = 1.f;
       
        border.lineCap = @"square";
       
        border.lineDashPattern = @[@4, @2];
       
        [self.layer addSublayer:border];

view添加虚线边框

标签:

原文地址:http://www.cnblogs.com/tian-sun/p/5019871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!