美文网首页
ios画线的正确处理方式

ios画线的正确处理方式

作者: 石卒2018 | 来源:发表于2018-06-06 10:09 被阅读14次
    - (void)drawRect:(CGRect)rect {
        CGContextRef context = UIGraphicsGetCurrentContext();
        CGContextSetFillColorWithColor(context, [UIColor lightGrayColor].CGColor);
        CGContextFillRect(context, CGRectMake(0, CGRectGetHeight(self.frame) - 0.5, CGRectGetWidth(self.frame), 0.5));
    }
    

    相关文章

      网友评论

          本文标题:ios画线的正确处理方式

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