美文网首页
Info.plist 相关

Info.plist 相关

作者: 竹菜板 | 来源:发表于2017-03-25 11:11 被阅读10次
  • 支持http
    App Transport Security Settings(Dictionary)
    Allow Arbitrary Loads(Boolean) true

  • 文件共享
    Application supports iTunes file sharing YES

  • 状态栏
    Status bar style UIStatusBarStyleLightContent
    View controller-based status bar appearance 设置为NO,就可以在程序中自由控制状态栏的隐藏和显示了
    Status bar is initially hidden 在APP启动时全屏

  • 应用之间跳转

加入白名单后,本App才可以打开其它App:

    <key>LSApplicationQueriesSchemes</key>
    <array>
        <string>OTHER APP SCHEME</string>
        <string>OTHER APP SCHEME</string>
    </array>

设置自己的Schemes,供其它App调用:

    <key>CFBundleURLTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeRole</key>
            <string>Editor</string>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>YOUR SCHEME</string>
            </array>
        </dict>
    </array>

相关文章

网友评论

      本文标题:Info.plist 相关

      本文链接:https://www.haomeiwen.com/subject/woxcottx.html