UIImageView 圆形的两种方法

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

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

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

imageView.layer.masksToBounds = YES;

2、图片本身就是圆形

05-15 22:49