I am experimenting with the layer of a UIImageView, in particular adding rounded corners.
My question is, What is the impact on performance (if any) by doing the following :
[self.imgView.layer setCornerRadius:10.0f];
[self.imgView.layer setMasksToBounds:YES];
[self.imgView.layer setBorderWidth:2.0f];
[self.imgView.layer setBorderColor:[[UIColor yellowColor] CGColor]];
over 'Pre-Rendering' the image before hand.
Thank you