views:

230

answers:

1

I have used table view in my application, and within that I have used the single line separator given by tableview. How can I make a transparent separator in a tableview?

If anybody has any ideas/code snippets/useful links, I would greatly appreciate it.

+1  A: 

it's very simple in your viewdidload use this

[yourTableView setSeparatorColor:[UIColor clearColor]];

Rahul Vyas