I've tried using the following code but with no luck. Anybody know how to do this in iOS 6? I do not want to create a custom cell.
self.tableView.layer.cornerRadius = 5.0f;
[self.tableView setClipsToBounds:YES];
Edit:
It appears that what's actually happening is that this code is creating a corner radius for the entire view, not each individual UITableViewSection. Does this make sense?
I have also tried [cell.layer setCornerRadius:3.0];
but also with no luck. The corners of my UITableView are still exactly the same.