Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Top Border of Top Cell in UITableView Grouped Cells is Thick & Fuzzy

I am using a UITableView with grouped rows. In each group / section of rows, the top cell has a thicker-than-normal top border and the top rounded corners appear fuzzy. I am not doing anything out of the ordinary with this table.

I have looked at other apps and I do not see the same thing happening.

Any ideas would be much appreciated.

like image 602
Chris Avatar asked Jan 10 '11 22:01

Chris


1 Answers

Are you sure it isn't just that you're using the UITableViewCellSeparatorStyleSingleLineEtched UITableViewCellSeparatorStyle?

Try setting you're UITableView's separatorStyle property to UITableViewCellSeparatorStyleSingleLine. (Or just select "Single Line" for the "Seperator" option within the Table View attibutes in Interface Builder if that's how you're creating the UITableView.)

like image 141
John Parker Avatar answered Oct 27 '22 00:10

John Parker