我正在尝试添加正确大小的背景图像以支持 iPhone5 4" 屏幕,但我仍然在底部得到相同的信箱。图像是正确大小的图像。我使用的代码:
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
CGSize result = [[UIScreen mainScreen] bounds].size;
if(result.height == kIphone5) {
//====THIS IS AN iPhone5 4" screen====//
UIImage *image = [UIImage imageNamed:@"iphone_frosty-568h@2x.png"];
[backgroundImage setImage:image];
}
我确实有兰奇图像..
更新
我最终将 iPhone5 背景图像添加到 iPhone5 Storyboard 并将其用于所有 iPhone 模式。不知道这是否是正确的方法,但它似乎有效。
有人可以请教吗?