Upper Boundary of Upper Cell in UITableView Grouped Cells Thick & Fuzzy

I am using a UITableView with grouped strings. In each row group / section, the top cell has a wider top border, and the top rounded corners seem fuzzy. I am not doing anything unusual with this table.

I looked at other applications and I do not see what is happening.

Any ideas would be highly appreciated.

+6
iphone image-processing uitableview cell
source share
1 answer

Are you sure you are not only using UITableViewCellSeparatorStyleSingleLineEtched UITableViewCellSeparatorStyle?

Try setting the UITableView separatorStyle property to UITableViewCellSeparatorStyleSingleLine . (Or simply select Single Line for the Separator option in the Table View in the Interface Builder, if that is the way you create the UITableView.)

+7
source share

All Articles