Reputation: 9429
I use this for hiding separator between rows
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
but, there is still separator on top of section header. How can I hide them too?
Upvotes: 0
Views: 811
Reputation: 4174
With Storyboard:
Without Storyboard:
self.tableView.separatorColor = UIColor.clearColor()
Upvotes: 1
Reputation: 150
Try
self.tableView.separatorColor = UIColor.clear
It should work
Upvotes: 1