如何让图片显示为一个圆 Posted on 2015-08-18 Edited on 2018-09-11 如何把图片显示为一个圆?假设这个UIImageView是一个正方形,也就是长和宽都一样…… 1234//OC CGFloat imageSize = self.imageView.bounds.size.height; self.imageView.layer.masksToBounds = YES; self.imageView.layer.cornerRadius = imageSize/2; 效果图: