为UIImage制作圆角

时间:2012-01-20 08:51:10

标签: iphone ios cocoa-touch uiimageview uiimage

在我的iPhone应用程序中,我必须显示一个UIImage,其四个角全部弯曲,以便在屏幕上看起来很好。但是我的图像是一个矩形图像,它不能在图像级别上改变,因为它来自第三方。

使用UIImageView我可以设置框架。使用代码,我如何修改我的UIImage以获得圆角?

有任何线索吗?

1 个答案:

答案 0 :(得分:7)

尝试这种方式:

UIImageView *imageView = ...;
imageView.layer.cornerRadius = 7; // change this value  as per your desire
imageView.clipsToBounds = YES;