Please give ideas for how to crop UIImage on oval shape or circle shape. Please share your ideas.
Please give ideas for how to crop UIImage on oval shape or circle shape. Please share your ideas.
This should work, Try pasting below code in viewDidLoad().
self.myImage.layer.cornerRadius = self.myImage.frame.size.width / 2;
self.myImage.clipsToBounds = YES;