首先要有真机iPhone 6s以上,开发工具Xcode 7,然后在官方文档拷贝一段文字就可以了。
<key>UIApplicationShortcutItems</key> |
<array> |
<dict> |
<key>UIApplicationShortcutItemIconFile</key> |
<string>open-favorites</string> |
<key>UIApplicationShortcutItemTitle</key> |
<string>Favorites</string> |
<key>UIApplicationShortcutItemType</key> |
<string>com.mycompany.myapp.openfavorites</string> |
<key>UIApplicationShortcutItemUserInfo</key> |
<dict> |
<key>key1</key> |
<string>value1</string> |
</dict> |
</dict> |
<dict> |
<key>UIApplicationShortcutItemIconType</key> |
<string>UIApplicationShortcutIconTypeCompose</string> |
<key>UIApplicationShortcutItemTitle</key> |
<string>New Message</string> |
<key>UIApplicationShortcutItemType</key> |
<string>com.mycompany.myapp.newmessage</string> |
<key>UIApplicationShortcutItemUserInfo</key> |
<dict> |
<key>key2</key> |
<string>value2</string> |
</dict> |
</dict> |
</array> |
时间: 2024-10-05 05:04:56