我有一个图形设计师为我创建图像和类似的东西.我是否需要为他提供专门为iPhone 5创建的单独图像尺寸,还是像以前那样为3.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