hmhv

iOS9からのinfo.plist

2015-10-07

  • 通信先がhttps(TLSv1.2)未対応時
<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>

詳細:
App-Transport-Security-Technote

  • canOpenURLを使うために
<key>LSApplicationQueriesSchemes</key>
<array>
    <string>scheme</string>
</array>
  • iPadのSplit Viewに対応しないように
<key>UIRequiresFullScreen</key>
<true/>
  • 3D Touchでホーム画面のアイコンにメニューを追加のために
<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>