iOS(9& 10)应用程序不会颠倒旋转

时间:2017-07-11 07:50:44

标签: ios objective-c orientation landscape-portrait portrait

我遇到了麻烦,如果我将手机颠倒过来,请将我的应用程序颠倒过来。

我有一个包含两个场景的故事板文件: NavigationControllerScenes and MainScene / SettingsScene

在info.plist中,我选中了以纵向或颠倒方向开始的方框。

在app委托中我添加了:

#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
    - (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
    #else
    - (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
    #endif
    {
      return UIInterfaceOrientationMaskPortrait;
    }

在“设置”视图控制器中:

        - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation // iOS 6 autorotation fix
    {
        return UIInterfaceOrientationPortraitUpsideDown;
    }


    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
        return YES;
    }

    - (BOOL)shouldAutorotate  // iOS 6 autorotation fix
    {
        return YES;
    }
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
    {
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        }
        return self;
    }

#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
        - (NSUInteger)supportedInterfaceOrientations{
    #else
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations
    #endif
    {
        return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;
    }

}

在Mainview控制器中

        - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation // iOS 6 autorotation fix
    {
        return UIInterfaceOrientationPortraitUpsideDown;
    }


    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
        return YES;
    }

    - (BOOL)shouldAutorotate  // iOS 6 autorotation fix
    {
        return YES;
    }
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
    {
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        }
        return self;
    }


    #if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
            - (NSUInteger)supportedInterfaceOrientations
    #else
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations
    #endif
    {
        return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;
    }

可以旋转到横向和纵向,但不能旋转到纵向。 如果我取消选中info.plist中的纵向框并且仅选中了倒置框,则应用程序将在开始时崩溃。 所以我认为缺少设置......

我没有得到的是,我可以在只有一个场景的不同应用程序中成功使用这些代码片段 - 所以我认为错误来自多个场景。 也许我需要创建一个覆盖某些方法的navigationController。

还有一件事: 这不起作用 - 应用程序执行语句但没有任何反应:

NSNumber * value = [NSNumber numberWithInt:UIInterfaceOrientationPortraitUpsideDown];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];

在具有一个场景的应用程序中,它可以正常工作!

1 个答案:

答案 0 :(得分:0)

最后我自己找到了答案:

创建CustomNavigationController类,如下所示:

// .h file
#import <UIKit/UIKit.h>
@interface CustomNavigationController : UINavigationController
@end

// .m file
#import "CustomNavigationController.h"

@interface CustomNavigationController ()

@end

@implementation CustomNavigationController

- (BOOL)shouldAutorotate
{
    return self.topViewController.shouldAutorotate;
}
- (NSUInteger)supportedInterfaceOrientations
{
    return self.topViewController.supportedInterfaceOrientations;
}

@end

在故事板中单击导航控制器场景。 在自定义类部分中添加创建的类 as shown here