我试图按照我的观点强制景观的方法:
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationLandscapeLeft;
}
- (BOOL)shouldAutorotate{
return YES;
}
也没有工作.请注意,我正在模拟器和iPad上进行测试.
谢谢
解决方法
以下是我如何使用NavigationViewController强制我的一个观点:
>实现这个答案:https://stackoverflow.com/a/12662433/2394787
>在视图控制器中导入的消息:objc / message.h
>在viewDidLoad方法中添加了这行代码:
objc_msgSend([UIDevice currentDevice],@selector(setorientation:),UIInterfaceOrientationLandscapeLeft);
希望它有助于某人.