I know this is a usual problem, but I haven't seen any solution to this, hence this thread.
We've all create a grouped UITableView and tried to set the cell.imageView to a image. But what happends? The first and the last cell gets ugly because they're rectangular.
What we want to do is to only round the top left corner of the image in the first row and bottom left of the image in the last row.
A method like this:
cell.imageView.image = [image setCornerRadiusLeftTop: 10.0 rightTop: 0 leftBottom: 0 rightBottom: 0];`
Is there anybody out there that has done something similar?