arcangel06
arcangel06

Reputation: 164

3D Touch Shortcut Widget

i'm trying to implement new "quick menu widget" in iOS 10 available with 3dtouch. My app has multiple today extension and apple guidelines report

If your app has multiple widgets, pick one to appear in the quick action menu that appears when someone applies pressure to your app icon on the Home screen using 3D Touch.

I don't understand where i can "change" that!

With only one widget all works as well.

Upvotes: 13

Views: 3155

Answers (1)

Florian
Florian

Reputation: 5405

There is a new Info.plist key UIApplicationShortcutWidget which you need to set to the bundle identifier of your widget.

See the documentation at: https://developer.apple.com/library/prerelease/content/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW32

Upvotes: 17

Related Questions