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.
In iOS8:
Adding this to my UITableViewCell Subclass:
- (UIEdgeInsets)layoutMargins { return UIEdgeInsetsZero; }
and this to "tableView:cellForRowAtIndexPath" or "tableView:willDisplayCell":
[editCell setSeparatorInset:UIEdgeInsetsZero];
WORKED for me.