iOS强制横屏或强制竖屏

作者: 木语先生 | 来源:发表于2016-05-20 10:01 被阅读10620次

第一种解决方案(不推荐,直接跳过看第二种解决方案):

-,需求:
强制横竖屏,在某些情况下非常重要,在网上找了好多解决的方法,都没找到解决方法,请原谅我有点笨哈,不过经过了一段纠结的时光,终于解决了这个问题,会出现无法转屏的情况!!!

//强制转屏
- (void)interfaceOrientation:(UIInterfaceOrientation)orientation
{
    if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {
        SEL selector  = NSSelectorFromString(@"setOrientation:");
        NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];
        [invocation setSelector:selector];
        [invocation setTarget:[UIDevice currentDevice]];
        int val = orientation;
        // 从2开始是因为0 1 两个参数已经被selector和target占用
        [invocation setArgument:&val atIndex:2];
        [invocation invoke];
    }
}

强制横屏:

[self interfaceOrientation:UIInterfaceOrientationLandscapeRight];

强制竖屏:

[self interfaceOrientation:UIInterfaceOrientationPortrait];

总算是解决了这个头疼的问题,哈哈哈---啊---duang


只在某一个界面提供转屏的解决方法如下AppDelegate.m下操作

-(UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
    
    NSLog(@"0000000---------%@",NSStringFromClass([[self topViewController] class]));
    if ([NSStringFromClass([[self topViewController] class]) isEqualToString:@"想要提供转屏的控制器的名字"]) {
      //横屏
        return UIInterfaceOrientationMaskLandscapeRight;
    }
      //竖屏
    return UIInterfaceOrientationMaskPortrait;
}
//获取界面最上层的控制器
- (UIViewController*)topViewController {
    return [self topViewControllerWithRootViewController:[UIApplication sharedApplication].keyWindow.rootViewController];
}
//一层一层的进行查找判断
- (UIViewController*)topViewControllerWithRootViewController:(UIViewController*)rootViewController {
    if ([rootViewController isKindOfClass:[UITabBarController class]]) {
        UITabBarController* tabBarController = (UITabBarController*)rootViewController;
        return [self topViewControllerWithRootViewController:tabBarController.selectedViewController];
    } else if ([rootViewController isKindOfClass:[UINavigationController class]]) {
        UINavigationController* nav = (UINavigationController*)rootViewController;
        return [self topViewControllerWithRootViewController:nav.visibleViewController];
    } else if (rootViewController.presentedViewController) {
        UIViewController* presentedViewController = rootViewController.presentedViewController;
        return [self topViewControllerWithRootViewController:presentedViewController];
    } else {
        return rootViewController;
    }
}

2017.5.15更新:

在设置控制器的旋转屏的时候,我目前的应用中的处理方式:
因为在大部分的场景中,只有个别页面有横屏的情况,所以基本上都是竖屏,所以我在处理这两种情况的时候,优先选择使用系统提供的方法:
如果你的应用的根控制器是Nav就把下面这段代码放到Nav根控制器下,如果是TabVC放到TabVC的下面

- (BOOL)shouldAutorotate{
    return YES;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
    return UIInterfaceOrientationMaskPortrait;
}
然后在你想横屏的控制器加上这段代码,基本上横屏问题就可以搞定了,前提是你的这个控制器是moda出来的,如果是push的话就要使用上文提到的强制横竖屏的方法,下面这段代码是不起作用的
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
    return (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscapeRight;
}

第二种解决方案:

灵活设置横竖屏,不用区分Push还是Present,都是可以设置。
第一步:

在AppDelegate.h中添加旋转属性

/**
 * 是否允许转向
 */
@property(nonatomic,assign)BOOL allowRotation;
在AppDelegate.m中添加转屏的代理方法

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(nullable UIWindow *)window

{
    
    if (self.allowRotation == YES) {
        //横屏
        return UIInterfaceOrientationMaskLandscape;
        
    }else{
        //竖屏
        return UIInterfaceOrientationMaskPortrait;
        
    }
    
}

第二步:
设置横竖屏的核心方法,我是直接把这个方法添加到了UIDevice的分类中,代码如下:

UIDevice+TFDevice.h :

#import <UIKit/UIKit.h>
@interface UIDevice (TFDevice)
/**
 * @interfaceOrientation 输入要强制转屏的方向
 */
+ (void)switchNewOrientation:(UIInterfaceOrientation)interfaceOrientation;
@end

UIDevice+TFDevice.m :

#import "UIDevice+TFDevice.h"

@implementation UIDevice (TFDevice)

+ (void)switchNewOrientation:(UIInterfaceOrientation)interfaceOrientation
{
        
        NSNumber *resetOrientationTarget = [NSNumber numberWithInt:UIInterfaceOrientationUnknown];
        
        [[UIDevice currentDevice] setValue:resetOrientationTarget forKey:@"orientation"];
        
        NSNumber *orientationTarget = [NSNumber numberWithInt:interfaceOrientation];
        
        [[UIDevice currentDevice] setValue:orientationTarget forKey:@"orientation"];
    
}
@end

第三步:
在需要设置横屏的控制器的ViewDidLoad中添加下面代码:

- (void)viewDidLoad {
    [super viewDidLoad];

    AppDelegate * appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
    //允许转成横屏
    appDelegate.allowRotation = YES;
    //调用横屏代码
    [UIDevice switchNewOrientation:UIInterfaceOrientationLandscapeRight];
}

第四步 (针对Push出的控制器来说):
需要注意的是push过去的时候变成横屏,pop出去的时候在设置竖屏,此时最好禁用系统的侧滑返回手势。

-(void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
    //禁用侧滑手势方法
    self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}
-(void)viewWillDisappear:(BOOL)animated{
    [super viewWillDisappear:animated];
    //禁用侧滑手势方法
    self.navigationController.interactivePopGestureRecognizer.enabled = YES;
}

第五步:
push控制器:

    //点击导航栏返回按钮的时候调用,所以Push出的控制器最好禁用侧滑手势:
     AppDelegate * appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
    appDelegate.allowRotation = NO;//关闭横屏仅允许竖屏
    //切换到竖屏
    [UIDevice switchNewOrientation:UIInterfaceOrientationPortrait];
        
     [self.navigationController popViewControllerAnimated:YES];

present控制器:

    AppDelegate * appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
    appDelegate.allowRotation = NO;//关闭横屏仅允许竖屏
    //切换到竖屏
    [UIDevice switchNewOrientation:UIInterfaceOrientationPortrait];
    
    [self dismissViewControllerAnimated:YES completion:nil];

第六步:
Demo地址:https://github.com/aiyakuaile/PLTest

相关文章

  • iOS强制横屏或强制竖屏

    第一种解决方案(不推荐,直接跳过看第二种解决方案): 需求: 强制横竖屏,在某些情况下非常重要,在网上找了好多解决...

  • iOS强制横屏或强制竖屏

    第一种解决方案(不推荐,直接跳过看第二种解决方案): -,需求:强制横竖屏,在某些情况下非常重要,在网上找了好多解...

  • iOS强制横屏或强制竖屏

    原文链接https://my.oschina.net/huqiji/blog/3031940第一种方法会出现无法转...

  • iOS 强制横屏或强制竖屏

    灵活设置横竖屏,不用区分Push还是Present,都是可以设置。 第一步 在AppDelegate.h中添加旋转...

  • iOS强制横屏或强制竖屏

    第一种解决方案(不推荐,直接跳过看第二种解决方案): -,需求:强制横竖屏,在某些情况下非常重要,在网上找了好多解...

  • iOS强制横屏或强制竖屏

    第一种解决方案(不推荐,直接跳过看第二种解决方案): -,需求:强制横竖屏,在某些情况下非常重要,在网上找了好多解...

  • H5页面自动适应横竖屏

    对于样式: 通过html标签可强制移动端浏览器横屏或竖屏但兼容性较差,目前仅有: UC强制竖屏: QQ强制竖屏: ...

  • iOS 强制转屏 强制横屏 强制竖屏

    今天项目中遇到正在看视频的时候账号被挤,如果当时是横屏的情况下,需要强制竖屏。真头疼,网上找了好多方法,终于解决啦...

  • iOS 屏幕旋转控制

    /** 屏幕旋转控制 allowRotateType ==(0强制竖屏,1横竖屏,2~强制横屏 )*/ (UIIn...

  • iOS强制转屏

    引言 遇到需要转屏的功能,查资料刚好看到一篇iOS强制横屏或强制竖屏,不过发现里面的方法有点太不可取,做了下修改。...

网友评论

  • zidon:写的很全面 很实用
  • Just_go:原来是要放在tabvc下才有效果, 感谢大神, 不过为什么要在tabvc里设置才生效呢
  • chocolate_df:大神 在横屏的控制器时 程序切换到后台 整个手机都变成横屏了 这个要怎么限制一下 :persevere:
  • pro_cookies:大兄弟 这个 好像在比如播放视频的时候 点击按钮 切换的时候 只有第一次有效 后面就不旋转了 这个是什么原因呢
  • 1024猿:不错,你这个方法也直接解决了横屏时退后台回前台的问题
  • 海边漫步的我:为啥我用你的强制横屏 不起作用? 看到麻烦博主回复下
    木语先生:@毛夏天 不一样.present时候如果没有导航栏,直接用present的方法设置就行.如果带有导航栏,设置横屏的那断代码就会失效,是不走的
    海边漫步的我:push和present 不一样是吧
    木语先生:要不你新建一个空工程测试一下,我的都是可行的
  • SnailLi:运行的时候崩在[invocation invoke];代码上了,什么原因啊?
  • 697a2115c247:麻烦问一下 push进页面在返回的时候怎么设置竖屏
  • 西叶lv:push的时候怎么横屏啊???
    697a2115c247:麻烦问一下 push 页面返回上级页面的时候怎么设置竖屏
    木语先生:push有点麻烦,只能使用上文说的强制转屏的方法,建议使用moda设置起来还方便
  • wnido:你这方法太累赘了 ,有点本末倒置了, 这里为什么你的viewController 不响应 转向的方法,是因为你整个跟视图是nav , 你应该在nav里面监听这些方法,获取nav的topViewController ,进行后续的逻辑
    木语先生:@追善 哈哈,确实应该在根控制器进行监听,我的应用是这样写的,这个帖子我没更新
    wnido:http://www.jianshu.com/p/74616f894d94 自己写了篇,顺带破你这个问题O(∩_∩)O哈!
  • Ethan09:请问下,这样设置上线被拒的可能性大么
    685d64b7afd9:@千牛宝宝 确定不会被拒吗?
    Ethan09:OK,谢了
    木语先生:@cater_09 我就是这么弄得
  • Major_shen:楼主,强制横竖屏在ipod为什么不起作用呢?求回复
  • 小微向前冲:哦 那好吧
  • 小微向前冲:请问为什么使用了你这个方法后,旋转式没有动画效果,并且状态栏也消失了呢?
    木语先生:@小微向前冲 我是storyboard作为根控制器,其它没试
    小微向前冲:@千牛宝宝 就是如果不使用 storyboard 作为根视图,那么在旋转的时候会非常生硬,没有动画效果!!
    木语先生:@小微向前冲 横屏的时候状态栏默认就是消失的,需要在横屏的时候用代码显示出来。动画效果不太明白
  • lhq_cd:请教一下,我只想让我的App其中某个界面横屏,其他都是竖屏,应该怎么做呢,我用了你说的那两个强制横屏的方法,但是没用啊 ···是因为我没有勾选那个设置里需要支持横屏吗?但如果勾选了,不用实现方法也能实现横屏,但是这样所有的界面都可以横屏了啊?
    木语先生: @coderHQLee 强制横屏意思是说就算你的手机此时锁定屏幕,用这个方法也可以强制横屏
    lhq_cd:@千牛宝宝 可是,我试过了,关键是应用支持横屏了,不需要你实现的方法也可以横屏啊
    木语先生:@coderHQLee 起作用的前提是你的应用要支持横屏,然后在用我提供的方法就可以
  • sfandy:iOS7横屏挂起,再进横屏,也能正常横屏吗?
  • a24b6718d698:强制横屏是不是得再该当前控制器支持横屏的前提下,才能使用
    木语先生:@沐逸 是的,就比如播放视频的时候那个强制横屏的按钮一样,前提都是你的设置中必须支持横竖屏
  • 其实也没有:我这边 为毛 强制竖屏后,view 只是屏幕的一半?
    木语先生: @xz1201 你在导航栏的根目录下重写旋转的方法,并设置界面支持的旋转方向试一试
  • DiamondsAndRust:OMG!
    大神!
    5.20被你拯救了
    海边漫步的我:为啥我的没有用呢
    DiamondsAndRust:@千牛宝宝 哈哈~没有没有~是因此能够下班了
    木语先生:@DiamondsAndRust 怎么,难道因此成功脱单了,😄😄

本文标题:iOS强制横屏或强制竖屏

本文链接:https://www.haomeiwen.com/subject/egxnrttx.html