Info.plist 相关

  • 支持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:

    LSApplicationQueriesSchemes
    
        OTHER APP SCHEME
        OTHER APP SCHEME
    

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

    CFBundleURLTypes
    
        
            CFBundleTypeRole
            Editor
            CFBundleURLSchemes
            
                YOUR SCHEME
            
        
    

你可能感兴趣的:(Info.plist 相关)