Is it possible create an UIImage or an UIImageView with rounded corners? Because I want take an UIImage and show it inside an UI
UIImage
UIImageView
UI
Yes, it is possible. Import the QuartzCore (#import ) header and play with the layer property of the UIImageView.
QuartzCore
#import
layer
yourImageView.layer.cornerRadius = yourRadius; yourImageView.clipsToBounds = YES;
See the CALayer class reference for more info.