您的位置:首页 > 产品设计 > UI/UE

UIImageView 使图片圆形的方法

2015-08-09 14:16 337 查看
UIImageView 圆形的两种方法

1、cornerRadius (tableView,collectionView尽量避免使用,影响性能)

//想要圆角 cornerRadius必须是 imageview高的一半

imageView.layer.cornerRadius = imageView.frame.size.height/2;

imageView.layer.masksToBounds = YES;

2、图片本身就是圆形
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: