• iOS代码处理横屏问题


    借助通知来控制界面的横竖屏切换。
    还是整个App中大部分界面都是竖屏,某个界面可以横竖屏切换的情况。

    首先,在【General】-->【Device Orientation】设置仅支持竖屏,like this:

    blob.png
    Device Orientation

    然后在特殊的视图控制器里的ViewDidLoad中注册通知:

        [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange) name:UIDeviceOrientationDidChangeNotification object:nil];

    通知方法的实现过程:

    - (void)deviceOrientationDidChange
    {
        NSLog(@"deviceOrientationDidChange:%ld",(long)[UIDevice currentDevice].orientation);
        if([UIDevice currentDevice].orientation == UIDeviceOrientationPortrait) {
            [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];
            [self orientationChange:NO];
            //注意: UIDeviceOrientationLandscapeLeft 与 UIInterfaceOrientationLandscapeRight
        } else if ([UIDevice currentDevice].orientation == UIDeviceOrientationLandscapeLeft) {
            [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight];
            [self orientationChange:YES];
        }
    }
    
    - (void)orientationChange:(BOOL)landscapeRight
    {
        if (landscapeRight) {
            [UIView animateWithDuration:0.2f animations:^{
                self.view.transform = CGAffineTransformMakeRotation(M_PI_2);
                self.view.bounds = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
            }];
        } else {
            [UIView animateWithDuration:0.2f animations:^{
                self.view.transform = CGAffineTransformMakeRotation(0);
                self.view.bounds = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
            }];
        }
    }
    // 用到的两个宏:
        #define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width)
        #define SCREEN_HEIGHT ([UIScreen mainScreen].bounds.size.height)

    最重要的一点:
    需要重写如下方法,并且返回NO。

    - (BOOL)shouldAutorotate
    {
        return NO;
    }

    这样,在设备出于横屏时,界面就会变成横屏,设备处于竖屏时,界面就会变成竖屏。

    填坑

    • 上面方式二,因为【General】-->【Device Orientation】因为只设置了竖屏,所以当横屏时,如果有键盘弹出,键盘是竖屏时的样式。
      解决办法:在【General】-->【Device Orientation】中加上横屏时的方向。

    • 如果VieController 是放在UINavigationController或者UITabBarController中,需要重写它们的方向控制方法。

    // UINavigationController:
    - (BOOL)shouldAutorotate
    {
        return [self.topViewController shouldAutorotate];
    }
    
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations
    {
        return [self.topViewController supportedInterfaceOrientations];
    }
    
    // UITabBarController:
    - (BOOL)shouldAutorotate
    {
        return [self.selectedViewController shouldAutorotate];
    }
    
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations
    {
        return [self.selectedViewController supportedInterfaceOrientations];
    }
    • 如果想要点击某个按钮之后,强制将竖屏显示的界面变成横屏呢?
      有人可能会想到这样写:

    // 横屏
    - (IBAction)landscapAction:(id)sender {
        [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight];
        [self orientationChange:YES];
    }

    但是按照上面的写法,会导致返回到之前的界面时,视图方向错误,即使返回前执行如下代码:

    [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];
    [self orientationChange:NO];

    也没有作用,下面是在开源工程中无意看到的写法:

    // 横屏
    - (IBAction)landscapAction:(id)sender {
        [self interfaceOrientation:UIInterfaceOrientationLandscapeRight];
    }
    
    // 竖屏
    - (IBAction)portraitAction:(id)sender {
        [self interfaceOrientation:UIInterfaceOrientationPortrait];
    }
    
    - (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;
            [invocation setArgument:&val atIndex:2];
            [invocation invoke];
        }
    }

    上面的方法会将设备的方向强制设置为某个方向,然后再监控设备方向改变的通知,即可实现横竖屏切换。
    这里有一个用JS 和原生item 控制横竖屏切换的Demo。地址
    这是效果图:

    727768-9d329256ad34abb8.gif

  • 相关阅读:
    iOS 两个App之间调起通信
    iOS图片压缩处理
    c# XML和实体类之间相互转换(序列化和反序列化)
    asp代码获取年数,季度数.星期数,天数,小时数,分钟数,秒数等时
    C# 响应微信发送的Token验证,文字、图文自动回复、请求客服对话.....
    sql server2008 R2打开报错:无法识别的配置节 system.serviceModel解决办法分享
    html5/css3响应式布局介绍及设计流程
    C#从入门到精通视频教程(2009年最新) 视频列表
    视频播放flv player的使用
    ASP中DateDiff函数详解
  • 原文地址:https://www.cnblogs.com/graveliang/p/5749787.html
Copyright © 2020-2023  润新知