Is there a limit on the number of UIApplicationShortcutItems you can get?

I want to add a new 3D / Force Touch function (UIApplicationShortcutItem) to my application, but I was wondering if or not there is a limit on how much you can have in one application?

I looked at the documentation but can't see the limit mention: https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIApplicationShortcutItem_class/

+8
ios iphone xcode7 3dtouch
source share
1 answer

iOS 9 displays up to four quick actions for your application. In this limit, the system first shows your static quick actions, starting from the topmost position in the menu. If your static elements do not exhaust the limit, and you also defined dynamic quick actions, then one or more of your dynamic quick actions is displayed.

You can refer to the Example apple examples .

Apple docs

+9
source share

All Articles