gpt4 book ai didi

ios - iPhone 5 错误的屏幕高度

转载 作者:可可西里 更新时间:2023-11-01 06:20:14 26 4
gpt4 key购买 nike

我在 3.5 英寸屏幕上开发了一个应用程序,现在我为 4 英寸屏幕做了一个新的 Storyboard,我喜欢按照以下步骤在 appdelegate 上的 Storyboard之间切换,我记录了屏幕高度,它给了我 480.00000 检查它:

NSLog(@"Checking Screen Size");
if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPhone)
{
NSLog(@"On iPhone");
CGSize iOSDeviceScreenSize = [[UIScreen mainScreen] bounds].size;

if (iOSDeviceScreenSize.height == 480)
{ (diagonally measured)
NSLog(@"iPhone 4: %f", iOSDeviceScreenSize.height);
}
if (iOSDeviceScreenSize.height == 568)
{
NSLog(@"iPhone 5: %f", iOSDeviceScreenSize.height);
}

NSLog 给了我 480.0000 而我的手机是 iPhone 5

最佳答案

您需要向应用程序添加一个“高”启动图像Default-568h@2x.png 以表明您支持新的显示尺寸,否则您将以兼容模式运行(而不是全屏)。

关于ios - iPhone 5 错误的屏幕高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14038077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com