Is there a way of rounding the corners of an image that I placing in an imageview?
+3
A:
theImageView.layer.cornerRadius = 12;
might also need
theImageView.layer.masksToBounds = YES;
drawnonward
2010-06-29 16:14:50
This didn't seem to work. Still trying to find a solution!
TheLearner
2010-07-06 08:38:11
This has worked for me. Can you add some more details or a code snippet about how you are using this? Is the image view larger than the image?
drawnonward
2010-07-06 16:04:09