Hi,
I need to add rounded corners to an image in a UITable View cell to 3px. What's the best way to go about this? Apparently you can use the quartz framework?
Thanks.
Hi,
I need to add rounded corners to an image in a UITable View cell to 3px. What's the best way to go about this? Apparently you can use the quartz framework?
Thanks.
The easiest way to get rounded corners is Core Animation:
imageView.layer.cornerRadius = 3.0f;