Force Touch Menu
With iOS 3d touch you can add addition app launch options that will look similar to the ones on the screenshot below:
If you want to add and handle similar menu items for your app, you need to complete 2 simple steps:
1) Add menu items to your app using IOS Native settings:
2) Handle the menu items actions:
You can check if the application has been launched with shortcut item by checking GetAppOpenShortcutItem value. (if a value is empty, an application has been launched normally)
namespace SA.iOS.UIKit
...
var iteam = ISN_UIApplication.ApplicationDelegate.GetAppOpenShortcutItem();
if(iteam != null) {
Debug.Log(iteam.Type);
}