• iPad iPhone程序增加启动画面


    为iPad和iPhone程序增加启动画面非常简单,基本思路就是增加启动图片资源Default.png即可,只是要根据不同的分辨率和旋转方向需要有不同的图片尺寸。

    目前的iOS设备有三种不同的分辨率:

    1 iPad 768x1024
    2 iPhone4 640x960
    3 iPhone 320x480

    如果一个程序,既要支持iPad又要支持iPhone,那么它需要包含下面几个图片:

    1 Default-Portrait.png iPad专用竖向启动画面 768x1024或者768x1004
    2 Default-Landscape.png iPad专用横向启动画面 1024x768或者1024x748
    3 Default-PortraitUpsideDown.png iPad专用竖向启动画面(Home按钮在屏幕上面),可省略 768x1024或者768x1004
    4 Default-LandscapeLeft.png iPad专用横向启动画面(可省略), 1024x768或者1024x748
    5 Default-LandscapeRight.png iPad专用横向启动画面(可省略), 1024x768或者1024x748
    6 Default.png iPhone默认启动图片,如果没有提供上面几个iPad专用启动图片,则在iPad上运行时也使用Default.png(不推荐) 320x480或者320x460
    7 Default@2x.png iPhone4启动图片640x960或者640x920

    为了在iPad上使用上述的启动画面,你还需要在xxxx_info.plist中加入key(根据下拉菜单中的可选项选择):

    1 UISupportedInterfaceOrientations
    2 或 Supported interface orientations

    同时,为其加入值(根据下拉菜单中的可选项选择):

    1 UIInterfaceOrientationPortrait 或 Portrait (bottom home button)
    2 UIInterfacOrientationPortraitUpsideDown 或 Portrait (top home button)
    3 UIInterfaceOrientationLandscapeLeft 或 Landscape (left home button)
    4 UIInterfaceOrientationLandscapeRight 或 Landscape (right home button)
  • 相关阅读:
    js实现两种实用的排序算法——冒泡、快速排序
    node端代理浏览器路由 解决浏览器跨域问题
    HTTP Request header
    移动H5前端性能优化指南
    express下使用ES6
    Nginx Location配置总结
    NODE_ENV=production 环境变量设置
    css3逐帧动画
    js scheme 打开手机app的方法
    jQuery hashchange监听浏览器url变化
  • 原文地址:https://www.cnblogs.com/iphone520/p/2343783.html
Copyright © 2020-2023  润新知