Я попытался использовать следующие методы, чтобы создать ландшафт на одном из моих представлений:
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationLandscapeLeft;
}
- (BOOL)shouldAutorotate{
return YES;
}
Не работали. Обратите внимание, что я тестирую симулятор и iPad.
Спасибо