Please see the attached image. In table views in iOS 7, UIKit draws a thin gray vertical line between the accessory view and the reordering control. However, when the table view
I'm having the same issue on an iphone 6s plus and solved it setting the backgroundColor of the cell's textLabel to clearColor
cell.textLabel.backgroundColor = [UIColor clearColor];
Looking at my problem with reveal showed me that the right border of the label was drawing this vertical line.