强制景观ios 7

我试图按照我的观点强制景观的方法
- (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);

希望它有助于某人.

相关文章

当我们远离最新的 iOS 16 更新版本时,我们听到了困扰 Apple...
欧版/美版 特别说一下,美版选错了 可能会永久丧失4G,不过只...
一般在接外包的时候, 通常第三方需要安装你的app进行测...
前言为了让更多的人永远记住12月13日,各大厂都在这一天将应...