iPhone 5图像的命名约定?

时间:2012-11-08 10:20:26

标签: objective-c

我正在开发适用于iPhone 5及更低版本的应用。

我正在使用此代码的图像

CGRect mainFrame = [[UIScreen mainScreen] bounds];

int imgIndex = arc4random() % 10 + 1;

if(mainFrame.size.height > 480)
    [pBackgroundImageView setImage:[UIImage imageNamed:[NSString stringWithFormat:@"dreams 1136x640 %d.jpg",imgIndex]]];
else
    [pBackgroundImageView setImage:[UIImage imageNamed:[NSString stringWithFormat:@"dreams_960x640_%d.jpg",imgIndex]]];

但我对此并不满意。

iphone 5图像是否有任何特定的命名约定?

提前致谢 真

1 个答案:

答案 0 :(得分:6)

Default-568h@2x.png这将是您需要的启动图像,您需要在所有iPhone 5图像的末尾添加-568h@2x,但命名约定存在问题。

我发现这样做有帮助。

   [pBackgroundImageView setImage:[UIImage imageNamed:(IS_PHONE5()) ? @"myimage-568h@2x.png" : @"myimage.png"]];

问题是它没有选择-568h@2x,但这是应该的方式。 获取IS_PHONE5变量添加

   #define IS_PHONE5() ([UIScreen mainScreen].bounds.size.height == 568.0f && [UIScreen mainScreen].scale == 2.f && UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)

认为这可能有助于任何想要支持高分辨率手机和iPhone 5的人

Supporting high resolution and iPhone 5