0
我是全新的iOS我正在開發與iPhone 5兼容的應用程序我也想申請背景圖片來查看我的問題是我應該需要兩種不同尺寸的圖像?????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
}
}
那麼通常你不這樣做手動,但讓操作系統做的工作 - 見http://stackoverflow.com/questions/9611061/how-to-support-both-ipad-and-iphone-retina-graphics-在萬能-應用 – 2013-04-08 10:34:14