对于正在开发快速操作(应用程序快捷方式)的用户,您可以使用此脚本,使您可以在模拟器上模拟对应用程序的深度按压。
https://github.com/DeskConnect/SBShortcutMenuSimulator
这是屏幕截图:
对于那些首先考虑如何添加操作的用户,有两个选项:静态和动态。您只能设置4个选项,它将首先显示所有静态选项,如果有空间,则显示动态选项。
这是添加静态快捷方式的方法。这很简单,只需在主菜单上添加一些键Info.plist
在此示例中,我将添加两个静态选项,一个带有“默认搜索”图标,另一个带有来自资产目录的自定义图标。
<key>UIApplicationShortcutItems</key>
<array>
<dict>
<key>UIApplicationShortcutItemTitle</key>
<string>Add Event (with custom icon)</string>
<key>UIApplicationShortcutItemType</key>
<string>com.reverse.appname.addevent</string>
<key>UIApplicationShortcutItemIconFile</key>
<string>custom-icon-from-asset-catalog</string>
<key>UIApplicationShortcutItemSubtitle</key>
<string>Here you can add some text below the option</string>
</dict>
<dict>
<key>UIApplicationShortcutItemTitle</key>
<string>Search Event (with default icon)</string>
<key>UIApplicationShortcutItemType</key>
<string>com.reverse.appname.searchevents</string>
<key>UIApplicationShortcutItemIconType</key>
<string>UIApplicationShortcutIconTypeSearch</string>
<key>UIApplicationShortcutItemSubtitle</key>
<string>Here you can add some text below the option</string>
</dict>
</array>