UIImageView 使图片圆形的方法

UIImageView 圆形的两种方法

 

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

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

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

imageView.layer.masksToBounds = YES;

 

2、图片本身就是圆形

posted @ 2015-08-09 14:16  王权伟  阅读(628)  评论(0编辑  收藏  举报