1 2 3 4 5
| <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>
|
詳細:
App-Transport-Security-Technote
1 2 3 4
| <key>LSApplicationQueriesSchemes</key> <array> <string>scheme</string> </array>
|
1 2
| <key>UIRequiresFullScreen</key> <true/>
|
- 3D Touchでホーム画面のアイコンにメニューを追加のために
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <key>UIApplicationShortcutItems</key> <array> <dict> <key>UIApplicationShortcutItemIconType</key> <string>UIApplicationShortcutIconTypePlay</string> <key>UIApplicationShortcutItemTitle</key> <string>Play</string> <key>UIApplicationShortcutItemType</key> <string>static</string> <key>UIApplicationShortcutItemUserInfo</key> <dict> <key>key1</key> <string>value1</string> </dict> </dict> </array>
|