Quick Actions are triggered by using 3D Touch on the iOS app icon.
Questions tagged [quickaction]
93 questions
70
votes
7 answers
Android : Get view Reference to a Menu Item
I plan to use quick actions UI pattern in my application. Android Quick Actions UI Pattern . The quick action window needs a pivot view to stick to.
quickAction.show(View pivotView);
I intend to use quick action for the menu Item, I can get…

Yashwanth Kumar
- 28,931
- 15
- 65
- 69
16
votes
2 answers
visual studio 2015 disable quick action "remove this qualitfication"
how can i prevent visual studio 2015 quick actions to suggest me the "remove 'this' qualitfication" to simlify the name? i don't want to disable the quick actions itself, just this hint.
i cant find any settings in the options.
i've already tried a…

cyptus
- 3,346
- 3
- 31
- 52
11
votes
1 answer
With an iOS quick action (shortcut item), what is the purpose of the completion handler parameter?
An iOS quick action / shortcut item is received by the app delegate's implementation of application(_:performActionFor:completionHandler:).
In that implementation, you are supposed to call the completionHandler. It takes a Bool.
Does anyone know…

matt
- 515,959
- 87
- 875
- 1,141
7
votes
5 answers
How to Security > Privacy settings for a "Watch Me Do" QuickAction in Automator
I'm using Mac OS X 11.0.1 Big Sur
I used Automator to create a "Watch me do" QuickAction. I've saved it (is seems to save in ~/Library/Services by default), and exported it to iCloudDrive/Automator. I can run this script to completion successfully…

torpedo51
- 182
- 2
- 13
7
votes
1 answer
How localise the key UIApplicationShortcutItemTitle
How should I localise the key UIApplicationShortcutItemTitle?
I know how localisation works for keys like NSLocationUsageDescription and NSLocationAlwaysUsageDescription: you put your localisation in the InfoPlist.strings file.
However, those are…

Luca Bartoletti
- 2,435
- 1
- 24
- 46
6
votes
2 answers
Trying to get Static 3D touch Quick Actions to work in Obj-C
So I want a pretty basic 3D touch setup. On my main UI, I have a 2 option segmented control and I basically want to have one option of it selected upon open when 3DQuickActionA is used, and the other option when 3DTouchQuickActionB is used.
I've…

Branch
- 387
- 5
- 16
6
votes
0 answers
Is there any way to write UI tests for force touch actions on a iOS app?
I was trying to write UI tests for home screen quick actions that I implemented for my iOS app. So when I start recording UI workflows, it doesn't let me capture the force touch events on the app. Instead it ignores the force touch and immediately…

grane2212
- 764
- 1
- 10
- 29
5
votes
1 answer
How to make the app icon on a Search View act as a filter?
Basically, I want to reproduce the following feature:
Clicking on the app icon brings up a QuickActionBar that hosts the different possible search filters.
Does the API support this out of the box or do I have to do it myself?

Amokrane Chentir
- 29,907
- 37
- 114
- 158
5
votes
1 answer
How to open to a specific view using home quick actions
I am new to Swift and have been using SwiftUI, not Storyboard.
I set the UIApplicationShortcutItems in the Info.plist and have two quick actions that are able to present an alert with launchOptions.
I am able to switch-case out the quick actions in…

user1909186
- 1,124
- 2
- 12
- 26
5
votes
1 answer
3D Touch Quick actions not working at all
Ive been through all the other questions and I can't figure out what's wrong.
I downloaded the sample project from the Apple Developer site Add Home Screen Quick Actions and that works no problem, but when I start a new Xcode project and copy that…

Kurt L.
- 623
- 10
- 23
5
votes
0 answers
Adding 3D Touch Quick Actions to a Safari home screen shortcut?
With the introduction of the iPhone 6s, 3D Touch was announced. With that, came a new feature called Quick Actions. These allow you to access 1-4 actions quickly for an app on your home screen, simply by 3D Touching it.
For example, the Maps app…

Senseful
- 86,719
- 67
- 308
- 465
5
votes
2 answers
Customize quick action dialog for android
I'm developing an application in which I have to show quick action dialog on click of a button. Here is an example how I want it to implement.
Till now I could not figure out how to make a custom quick action dialog. But I have tried using an…

Anupam
- 3,742
- 18
- 55
- 87
4
votes
2 answers
How to add 3D touch quick actions inside an app? Like in contacts
Is there an API to show quick actions menu on force touch inside an app? I only see APIs for showing quick actions menu when you swipe-up peek view. But I want to do something like the example from apple 3D touch page.
Here is what I want to…

nimish
- 43
- 3
3
votes
1 answer
Flutter Quick Actions change selected Bottom Navigation Bar item
I'm trying to implement home screen quick actions / app shortcuts in my Flutter app. What I'm trying to achieve is when the user launches my app via a quick action, the app changes the selected tab inside the bottom navigation bar. Any help is…

Tristan Diependael
- 583
- 6
- 21
3
votes
0 answers
Best way to launch storyboard with 3D touch quick action?
Hi I have two 3D quick action shortcut item in my plist. I put my handler code in App delegate as following:
-(void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem…

lcl
- 1,045
- 11
- 13