启动画面 iPhone
我正在使用 Xcode 3.2.5 和模拟器-4.2,我正在纵向和横向模式下开发通用应用程序,因为我已将 plist 中的启动图像设置为 UILaunchImageFile~iphone 和 UILaunchImageFile~ipad,但我的问题是我的启动屏幕没有旋转为因为我没有使用 xcode 4 所以我可以在 plist 中设置图像 Default-Portrait.png * (768w x 1004h) 和 Default-PortraitUpsideDown.png (768w x 1004h) Default-Landscape.png ** (1024w x 748h)
那么任何人都可以知道如何更改我的启动屏幕方向以及在哪里?
I am using Xcode 3.2.5 and simulator-4.2 and i am developing universal application in portrait and landscape mode for that i have set launch image in plist as UILaunchImageFile~iphone and UILaunchImageFile~ipad but my question is my splash screen is not rotated as well as i am not using xcode 4 so i can set images in plist like
Default-Portrait.png * (768w x 1004h) and Default-PortraitUpsideDown.png (768w x 1004h)
Default-Landscape.png ** (1024w x 748h)
so can anyone have idea that how can change my splash screen orienattation and where?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 Info.plist 中尝试此操作:
然后,为您的图像命名,
对于 iPad:
"默认-横向~ipad.png",
"默认肖像~ipad.png",
“默认-PortraitUpsideDown~ipad.png”
适用于 iPhone/iPod Touch
"默认-风景.png",
"默认肖像.png",
“默认-PortraitUpsideDown.png”
Try this in your Info.plist:
Then, name your images,
For iPad:
"Default-Landscape~ipad.png",
"Default-Portrait~ipad.png",
"Default-PortraitUpsideDown~ipad.png"
For iPhone/iPod Touch
"Default-Landscape.png",
"Default-Portrait.png",
"Default-PortraitUpsideDown.png"