Reputation: 1191
I can't get rid of last cell shadow/border. Just look at the image and you'll understand what I am talking about
Anyone knows how to get rid of it? I have clear background for cell and for tableview, yet the border below still apears.
Thank you.
Upvotes: 0
Views: 237
Reputation: 14886
This should remove the white bottom border on each of the UITableView
section:
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];
Upvotes: 4