如何让图片显示为一个圆

如何把图片显示为一个圆?

假设这个UIImageView是一个正方形,也就是长和宽都一样……

1
2
3
4
//OC
CGFloat imageSize = self.imageView.bounds.size.height;
self.imageView.layer.masksToBounds = YES;
self.imageView.layer.cornerRadius = imageSize/2;

效果图: