Hi all,
With the new force touch feature, iphone users can press app icons in the home menu to unveil shortcut items.
These menu items are set by adding UIApplicationShortcutItems to the info.plist as documented here:
In app, they are handled by a simple callback as documented here:
Could you please implement this feature?
I tested adding to build.settings the code snippet below , but no shortcut items showed up so far:
UIApplicationShortcutItems =
{
{
UIApplicationShortcutItemTitle = “Action 1”,
UIApplicationShortcutItemtype = “action1”
},
{
UIApplicationShortcutItemTitle = “Action 2”,
UIApplicationShortcutItemtype = “action2”
}
},
Thank you very much,
Pascal Bancel