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