Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 256
arcangel06 Avatar asked Jul 07 '16 09:07

arcangel06


1 Answers

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

like image 76
Florian Avatar answered Sep 25 '22 06:09

Florian