I have an app where the UITableView\'s separator inset is set to custom values - Right 0, Left 0. This works perfectly in iOS 7.
UITableView
0
iOS 7.
Arg!!! After playing around either doing this in your Cell subclass:
Cell
- (UIEdgeInsets)layoutMargins { return UIEdgeInsetsZero; }
or setting the cell.layoutMargins = UIEdgeInsetsZero; fixed it for me.
cell.layoutMargins = UIEdgeInsetsZero;