强制景观ios 7

前端之家收集整理的这篇文章主要介绍了强制景观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);

希望它有助于某人.

原文链接:https://www.f2er.com/iOS/329167.html

猜你在找的iOS相关文章