我正在使用 Cordova/PhoneGap 构建一个应用程序,并在 Xcode 中添加了我的应用程序启动图像。
但是,在我的 iPhone 5 上进行测试时,启动图像似乎没有改变 - 它仍然显示默认的 Cordova 版本。
我正在运行 Xcode 版本 4.6.2,我相信它是最新的,并且它确实为 4 英寸 iPhone 5 图像提供了空间——它只是在我在手机上测试时没有出现。
我使用的图像是文档中指定的 640x1136。
有人知道为什么会这样吗?
谢谢!
编辑:
我注意到出现了一个警告:
/Users/me/Documents/Cordova27/app/app/Classes/AppDelegate.m:80:25: 'useSplashScreen' is deprecated: Deprecated in Cordova 2.5. Add/Remove the SplashScreen plugin instead of setting this property.
它指的是 AppDelegate.M 文件中的这一行:
#endif
self.viewController.useSplashScreen = YES;
// Set your app's start page by setting the <content src='foo.html' /> tag in config.xml.
// If necessary, uncomment the line below to override it.
// self.viewController.startPage = @"index.html";
// NOTE: To customize the view's frame size (which defaults to full screen), override
// [self.viewController viewWillAppear:] in your view controller.
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
}