- 支持http
App Transport Security Settings(Dictionary)
Allow Arbitrary Loads(Boolean) true
- 文件共享
Application supports iTunes file sharing YES
- 狀態(tài)欄
Status bar style UIStatusBarStyleLightContent
View controller-based status bar appearance 設(shè)置為NO,就可以在程序中自由控制狀態(tài)欄的隱藏和顯示了
Status bar is initially hidden 在APP啟動時全屏
- 應(yīng)用之間跳轉(zhuǎn)
加入白名單后,本App才可以打開其它App:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>OTHER APP SCHEME</string>
<string>OTHER APP SCHEME</string>
</array>
設(shè)置自己的Schemes,供其它App調(diào)用:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>YOUR SCHEME</string>
</array>
</dict>
</array>