美文网首页
圆形图片

圆形图片

作者: 小破孩丫 | 来源:发表于2016-01-25 11:22 被阅读33次

- (UIImageView *)cicleImageView:(UIImage *)image frame:(CGRect)frame radius:(CGFloat)radius{

UIImageView *iv = [[UIImageView alloc]initWithFrame:frame];

iv.image = image;

iv.layer.cornerRadius = radius; // 设置半径

iv.layer.masksToBounds = YES; //边界是否允许截取

return iv;

}

相关文章

网友评论

      本文标题:圆形图片

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