美文网首页
高效设置UIimageView圆角

高效设置UIimageView圆角

作者: 莫寂岚 | 来源:发表于2016-09-23 17:28 被阅读36次
UIGraphicsBeginImageContextWithOptions(self.companyImg.bounds.size, NO, [UIScreen mainScreen].scale);
        [[UIBezierPath bezierPathWithRoundedRect:self.companyImg.bounds cornerRadius:self.companyImg.bounds.size.width/2] addClip];
        [image drawInRect:self.companyImg.bounds];
        self.companyImg.image = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

相关文章

网友评论

      本文标题:高效设置UIimageView圆角

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