I have created a table view with prototype cells in a Storyboard with the \"Use Autolayout\" unchecked in Xcode 5.
The cells are UITableViewCell subclasses, mainly t
The cell is getting modified by the undocumented UITableViewCell's layoutSubviews
:
backgroundView
frame.imageView
(the ">") to the left despite being configured as a Custom Style cell.Thus avoiding executing super's layoutSubviews
fixes it.