我对 iOS 完全陌生,我正在开发一个与 iPhone 5 兼容的应用程序,我还想应用背景图像来查看我的问题是我是否需要两个不同尺寸的不同图像????
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
CGSize result = [[UIScreen mainScreen] bounds].size;
if(result.height == 480)
{
// iPhone 4S background view
}
if(result.height == 568)
{
// iPhone background image
}
}