可能的重复: 如何为iPhone 5屏幕分辨率开发或迁移应用程序?

我只是想知道我们应该如何应对iPhone 5更大的屏幕。

因为它在高度上有更多的像素,像GCRectMake这样使用坐标的东西(只是由于视网膜/非视网膜问题将像素增加了一倍)在版本之间无法无缝工作,就像我们得到视网膜时发生的那样。

我们是否需要设计两个故事板,就像iPad一样?

我个人不认为苹果会像许多人说的那样,要求你每次画画时都检查屏幕大小。iPad也会这样吗?


当前回答

No.

if ([[UIScreen mainScreen] bounds].size.height > 960)

iPhone 5是错误的

if ([[UIScreen mainScreen] bounds].size.height == 568)

其他回答

@interface UIDevice (Screen)
typedef enum
{
    iPhone          = 1 << 1,
    iPhoneRetina    = 1 << 2,
    iPhone5         = 1 << 3,
    iPad            = 1 << 4,
    iPadRetina      = 1 << 5

} DeviceType;

+ (DeviceType)deviceType;
@end

.m

#import "UIDevice+Screen.h"
@implementation UIDevice (Screen)

+ (DeviceType)deviceType
{
    DeviceType thisDevice = 0;
    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
    {
        thisDevice |= iPhone;
        if ([[UIScreen mainScreen] respondsToSelector: @selector(scale)])
        {
            thisDevice |= iPhoneRetina;
            if ([[UIScreen mainScreen] bounds].size.height == 568)
                thisDevice |= iPhone5;
        }
    }
    else
    {
        thisDevice |= iPad;
        if ([[UIScreen mainScreen] respondsToSelector: @selector(scale)])
            thisDevice |= iPadRetina;
    }
    return thisDevice;
}

@end

这样,如果你想检测它是iPhone还是iPad(不管屏幕大小),你只需要使用:

if ([UIDevice deviceType] & iPhone) 

or

if ([UIDevice deviceType] & iPad)

如果你只想检测iPhone 5,你可以使用

if ([UIDevice deviceType] & iPhone5)

与马尔科姆的答案相反,你需要检查才能确定它是否是iPhone,

if ([UIDevice currentResolution] == UIDevice_iPhoneHiRes || 
    [UIDevice currentResolution] == UIDevice_iPhoneStandardRes || 
    [UIDevice currentResolution] == UIDevice_iPhoneTallerHiRes)`

这两种方式都没有太大的优势,这只是个人喜好。

从我今天的演讲中可以看出,所有的应用程序都将继续在垂直拉伸的屏幕上工作。它们会被用字母盒装起来,或者基本上额外的88点高度会被简单地用黑色表示。

如果你只打算支持iOS 6+,那么一定要考虑使用自动布局。它删除了所有固定的布局处理,而是使用约束来布局事物。没有什么是硬编码的,您的生活将变得简单得多。

然而,如果你必须支持旧的iOS,那就真的取决于你的应用程序了。大多数使用标准导航栏和/或标签栏的应用程序都可以简单地展开中间的内容来使用这些额外的点。设置中心内容的自动调整大小蒙版,使其向两个方向展开。

view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

对于表视图,它的开箱即用非常好,但是,如果你的应用程序使用像素完美的布局来显示内容,那么你最好的办法是重新想象内容,以便它可以适应不同的高度。

如果这是不可能的,那么唯一剩下的选择是拥有两个ui (pre - iPhone 5和iPhone 5)。

如果这听起来很难看,那么你可以使用默认的字母盒模型,其中额外的点/像素只显示为黑色。

Edit

为了让你的应用程序在iPhone 5上运行,你需要添加一个视网膜版本的启动器图像。它应该被命名为Default-568h@2x.png。而且它必须是视网膜质量-这里没有向后兼容性:)

你也可以在Xcode中选择这张图片。转到目标,在Summary部分下,寻找Launch Images。图像的大小必须是640x1136像素。如果有帮助的话,这是在哪里可以找到它的截图。

我刚刚更新并将我的一个应用程序的iOS 6.0版本发送到商店。这个版本向后兼容iOS 5.0,因此我保留了shouldAutorotateToInterfaceOrientation:方法,并添加了如下所示的新方法。

我必须做到以下几点:

iOS 6中的自动旋转功能正在改变。在ios6中,UIViewController的shouldAutorotateToInterfaceOrientation方法已弃用。在它的地方,你应该使用支持的interfaceorientationsforwindow:和shouldAutorotate方法。 因此,我添加了这些新方法(为了兼容iOS 5,保留了旧方法):

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskAllButUpsideDown;    
}

Used the view controller’s viewWillLayoutSubviews method and adjust the layout using the view’s bounds rectangle. Modal view controllers: The willRotateToInterfaceOrientation:duration:, willAnimateRotationToInterfaceOrientation:duration:, and didRotateFromInterfaceOrientation: methods are no longer called on any view controller that makes a full-screen presentation over itself—for example, presentViewController:animated:completion:. Then I fixed the autolayout for views that needed it. Copied images from the simulator for startup view and views for the iTunes store into PhotoShop and exported them as png files. The name of the default image is: Default-568h@2x.png and the size is 640×1136. It´s also allowed to supply 640×1096 for the same portrait mode (Statusbar removed). Similar sizes may also be supplied in landscape mode if your app only allows landscape orientation on the iPhone. I have dropped backward compatibility for iOS 4. The main reason for that is because support for armv6 code has been dropped. Thus, all devices that I am able to support now (running armv7) can be upgraded to iOS 5. I am also generation armv7s code to support the iPhone 5 and thus can not use any third party frameworks (as Admob etc.) until they are updated.

这就是全部,但要记住在iOS 5和iOS 6中测试自动旋转,因为旋转的变化。

@Pascal对OP的问题的评论是正确的。通过简单地添加图像,它删除了黑色边框,应用程序将使用完整的高度。

您将需要通过确定设备正在使用更大的显示器来调整任何CGRects。例如,如果你需要一些与屏幕底部对齐的东西。

我相信有一个内置的方法,但我还没有看到任何东西,很多仍处于NDA之下,所以我们在应用程序中使用的方法是一个非常简单的全局函数。将以下内容添加到你的.pch文件中,然后它是一个简单的if(is4InchRetina()){…}调用来调整你的CGRects等。

static BOOL is4InchRetina()
{
    if (![UIApplication sharedApplication].statusBarHidden && (int)[[UIScreen mainScreen] applicationFrame].size.height == 548 || [UIApplication sharedApplication].statusBarHidden && (int)[[UIScreen mainScreen] applicationFrame].size.height == 568)
        return YES;

    return NO;
}

由于它在高度上有更多的像素,像GCRectMake这样使用坐标的东西在版本之间无法无缝工作,就像我们获得Retina时发生的那样。

好吧,它们的工作原理与视网膜显示器相同——只是CoreGraphics坐标系统中的1个单位将对应2个物理像素,但你不需要/不必做任何事情,逻辑保持不变。(你有没有试过在视网膜iPhone上运行你的非视网膜应用程序?)

对于实际的问题:这就是为什么你不应该使用显式的CGRectMakes和co…这就是为什么你有[[UIScreen mainScreen] applicationFrame]这样的东西。