views:

10

answers:

1

You can see the lines on the side of the table

How do you get rid of these lines on the side of the table?

Thanks in advance for your help.

+1  A: 

The problem is not in the lines.
The problem is in the labels' background color.
Just set the background color (.backgroundColor property) of the label (the one that contains the text "Item 1", "Item 2" etc.) to [UIColor clearColor] inside the cellForRowAtIndexPath method.

Michael Kessler
Thanks for the answer!
jleibsly2002