gpt4 book ai didi

ios - Phonegap ( cordova ) 2.4.0 启动画面显示缩小

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:22:48 26 4
gpt4 key购买 nike

我正在 iOS 上开发一个 phonegap 应用程序,并在装有 IOS 6.1 的 iPhone 4 上进行测试。我已经从 splash 文件夹中定义了所有启动画面,但这仍然无法按预期工作。首先启动画面加载正确,全尺寸,但当加载指示器出现时,图像缩小并显示为白色背景。它看起来很难看。如何解决?

谢谢大家。

最佳答案

找到一个“脏”的解决方案:

在CDVViewController.m中替换

    if (launchImageFile == nil) { // fallback if no launch image was specified
if (CDV_IsIPhone5()) {
// iPhone 5 or iPod Touch 6th-gen
launchImageFile = @"Default-568h";
} else {
launchImageFile = @"Default";
}
}

if (launchImageFile == nil) { // fallback if no launch image was specified
if (CDV_IsIPhone5()) {
// iPhone 5 or iPod Touch 6th-gen
launchImageFile = @"Default-568h";
} else {
launchImageFile = @"Default-568h"; //iphone5 image
}
}

但是正在寻找更好的解决方案...

关于ios - Phonegap ( cordova ) 2.4.0 启动画面显示缩小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14938440/

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