如何使用拉伸iPad Air 2模拟器停止iPad PRO模拟器

时间:2015-11-18 03:24:39

标签: xcode ipad ios-simulator appdelegate uiscreen

我将Objective-C用于我的Xcode。在Xcode 7.1中,我创建了一个新的iPadPRO.h和iPadPRO.m文件以及ipadPRO.storyboard。我将身份检查器中的storyboard类与相应的.h和.m文件相关联。我没有为此应用使用自动布局/尺寸类。

在AppDelegate.m中的

我用过..

    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
    {
        if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)] && [[UIScreen mainScreen] scale] == 2)
        {
        UIStoryboard *Retina = [UIStoryboard storyboardWithName:@"Retina" bundle:nil];

        UIViewController *initialViewController =[Retina instantiateInitialViewController];

            self.window.rootViewController = initialViewController;

            [self.window makeKeyAndVisible];
        }

    }

我可以使用上面代码的单独代码或附加内容,因此iPad PRO模拟器不使用延伸的iPad Air 2代码/图像,而是使用我自己创建的代码/图像它?

0 个答案:

没有答案