My UITableView is going to contain about 7 visible cells at a given time. Each cell is going to have 4 UIViews. I want each UIView to have a smooth corner. Is it better to use Quartz to apply the cornerRadius on the UIView or to make the UIView an UIImageView and have a transparent image that has been pre-rendered to have a smooth corner?
My UITableView is going to contain about 7 visible cells at a given time.
Share
If you are going to be using an animations I would stay around from using Quartz. Unless you rasterize the layer the animations will be choppy. Using a UIImageView would be the way to go if you are planning on adding custom animations to the table view cells. If you are not using animations then go ahead a use quartz, it is really to change the corner radius, add a drop shadow, etc.