Если подход к построителю интерфейса не работает или если у вас есть сложные подпредставления, которые нужно перестроить, вы можете сделать это -
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if(interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight)
{
/* handle resizing here*/
}
else if(interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
{
}
}
Я могу ошибаться, также проверьте это