tom
tom

Reputation: 14513

How to disable the iOS inset bevel effect on tableview cells

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

Answers (1)

Tony Million
Tony Million

Reputation: 4296

set the separator style to UITableViewCellSeparatorStyleSingleLine

tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;

Upvotes: 2

Related Questions