强制景观ios 7

前端之家收集整理的这篇文章主要介绍了强制景观ios 7前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图按照我的观点强制景观的方法
  1. - (NSUInteger)supportedInterfaceOrientations {
  2. return UIInterfaceOrientationMaskLandscape;
  3. }
  4.  
  5. - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
  6. return UIInterfaceOrientationLandscapeLeft;
  7. }
  8.  
  9. - (BOOL)shouldAutorotate{
  10. return YES;
  11. }

也没有工作.请注意,我正在模拟器和iPad上进行测试.

谢谢

解决方法

以下是我如何使用NavigationViewController强制我的一个观点:

>实现这个答案:https://stackoverflow.com/a/12662433/2394787
>在视图控制器中导入的消息:objc / message.h
>在viewDidLoad方法添加了这行代码

objc_msgSend([UIDevice currentDevice],@selector(setOrientation:),UIInterfaceOrientationLandscapeLeft);

希望它有助于某人.

猜你在找的iOS相关文章