views:

86

answers:

1

I have a normal UITableViewCell with custom colors, but how can i change the border?

Currently it looks very ugly:

http://i.imgur.com/QzFFY.png (i am not able to post images :( )

I only want a tiny little white border.

A: 
[tableView setSeparatorColor:];

... i believe ...

Thomas Clayson
tableView.separatorColor = [UIColor clearColor]; removes the border total.
patrickS
It should look like this:http://i.imgur.com/o9zqQ.jpg
patrickS
then use `tableView.separatorColor = [UIColor greenColor];`
Thomas Clayson