When a UITableView of type UITableViewStyleGrouped has a background view that is a non-default color or pattern image on the iPad, the rounded corners have an ugly extra line, s
The default separator style for iPad is UITableViewCellSeparatorStyleSingleLineEtched
. This is different from the iPhone's default of UITableViewCellSeparatorStyleSingleLine
.
If you would like to remove the bevel, set the separatorStyle
of the view to UITableViewCellSeparatorStyleSingleLine
.
Note that the default separator style in iOS 5 for both devices is SingleLineEtched.