相关疑难解决方法(0)

iPhone 5的屏幕是否需要单独版本的应用程序图像?

我有一个图形设计师为我创建图像和类似的东西.我是否需要为他提供专门为iPhone 5创建的单独图像尺寸,还是像以前那样为3.5英寸屏幕构建?图像会自动调整大小吗?

graphics ios retina-display iphone-5

2
推荐指数
1
解决办法
375
查看次数

iPhone 5图像的命名约定?

我正在开发适用于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]]];
Run Code Online (Sandbox Code Playgroud)

但我对此并不满意.

iphone 5图像有什么特定的命名约定吗?

在此先感谢Mano

objective-c

1
推荐指数
1
解决办法
1971
查看次数

标签 统计

graphics ×1

ios ×1

iphone-5 ×1

objective-c ×1

retina-display ×1