On using autoLayout in custom cell for tableView xib, i am getting following error.
When running in iOS 6 simulator CustomCells\'s implementation o
layoutSubviews needs to call super
Can be worked around on iOS6 by putting everything in your custom tableview cell in a container view. ie Create a new view to fill the cell then place controls etc inside that. Also make sure you set:
[theContainerView setTranslatesAutoresizingMaskIntoConstraints:NO];
for the container and subviews