This is Portrait:
This is Landscape
I\'ve tried this on rotation with no success:
self.tableView.autoresizesSubviews = YE
This problem can occur if you've called "willAnimateRotationToInterfaceOrientation:" in your navigation controller, but forgotten to call super from within the method.
You should have something like this:
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation];
// Your code here
}