I have a grouped UITableView with custom cells loaded from nib files. They have the proper 300 px width (for grouped) and appear okay, except for one problem: square corners. The first and the last cell of each group is not appearing to have rounded corners as it should. I have tried setting the backgroundcolor of the tableview to clear, as well as the background of the view. I initialize it in a pretty standard way in my UITableViewController with
self.tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
I put this in the ViewWillAppear method. I've also tried it in the viewDidLoad method and it made no difference. Any help on getting these corners rounded would be much appreciated! Thanks!