How to crop UIImage on oval shape or circle shape?

Viewed 50718

Please give ideas for how to crop UIImage on oval shape or circle shape. Please share your ideas.

11 Answers

This should work, Try pasting below code in viewDidLoad().

self.myImage.layer.cornerRadius = self.myImage.frame.size.width / 2;
self.myImage.clipsToBounds = YES;
Related