While referencing UIImage with rounded corners I'm able to create images that have rounded rects. This has definitely helped my scroll refresh rates.
The problem I now have is that I generally use UIViewContentModeScaleAspectFill
while drawing my UIImages
into view's.
Drawing with a UIBezierPath
and then putting the image in its bounds is making the image loose its aspect ratio.
[UIBezierPath bezierPathWithRoundedRect:imageView.bounds
cornerRadius:10.0] addClip];
[image drawInRect:imageView.bounds];
Is the only way out by writing a custom scale solution?
Thanks