Datenshi
Datenshi

Reputation: 1191

Grouped TableView last cell border

I can't get rid of last cell shadow/border. Just look at the image and you'll understand what I am talking about

enter image description here

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

Answers (1)

runmad
runmad

Reputation: 14886

This should remove the white bottom border on each of the UITableView section:

[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];

Upvotes: 4

Related Questions