Reputation: 14513
Is it possible to Disable the inset bevel effect comes by default with iOS 5, see http://www.tim-oliver.com/2011/10/22/the-new-uitableview-in-ios5/, the question is - can we disable it? How?
Upvotes: 2
Views: 493
Reputation: 4296
set the separator style to UITableViewCellSeparatorStyleSingleLine
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
Upvotes: 2