Quick Actions are triggered by using 3D Touch on the iOS app icon.
Questions tagged [quickaction]
93 questions
0
votes
1 answer
EditText inside QuickAction
Is it possible to have an EditText control inside a QuickAction?
Any example will be acceptable.

Vame
- 2,033
- 2
- 18
- 29
0
votes
1 answer
Set iOS dynamic quick action icon from url
I'm working but on iOS dynamic quick actions, and I want to use image from url, to be set as the quick action icon.
Is it possible? I didn't find an answer for that..

yershalom
- 786
- 1
- 8
- 19
0
votes
2 answers
NotificationCenter not trigger when call Quick Action
I implemented 3D Touch Quick Action in app when call function performActionForShortcutItem in AppDelegate, I triggering by NotificationCenter inside it but not work and call
my Code in AppDelegate:
func application(_ application: UIApplication,…

ImanX
- 789
- 6
- 23
0
votes
0 answers
Quick actions 3d touch to open viewcontroller
I am trying to get the 3d touch quick action to work, I have this code below.
I do get a print saying it was pressed but it doesn't go to the view controller I want.
func application(_ application: UIApplication, performActionFor shortcutItem:…

Tony Merritt
- 1,177
- 11
- 35
0
votes
1 answer
Starting Dialog from QuickAction Button
I have an app with a quickaction shown once a button is pressed. The quickaction shows a popup like in the Gallery 3D application for android, and when an action is clicked, I try to show a dialog, but I recieve a force close. Debug in Eclipse…

Timothy Miller
- 291
- 5
- 24
0
votes
1 answer
Use 3D Touch action with Touch ID protected device
Hi guys I've a big question.
If I have an app that could be protected by Touch ID protection, how do I have to manage the 3D Touch quick action that interests data? I've to ask fingerprint before the execution of the action, or I let the action be…

MettDich
- 17
- 1
- 5
0
votes
0 answers
Swift 3dTouch Quick Action crash after restarting the app
I have a problem with implementing 3D Touch Quick actions. The action should set an annotation to the user's location on a mapview. It works perfectly fine when the app is already running. But if I kill the app and try again, it just…

Konrad Löchner
- 49
- 5
0
votes
0 answers
3D Touch Quick Actions Always Going to Same Controller?
Relatively new to Swift so sorry if this is obvious. Trying to create quick action links to open different tab views:
Quick Action Links
When ever I try to open the action with this code though it always goes to the first quick action…

Matthew Frankland
- 80
- 9
0
votes
1 answer
Correct way to handle application launching with quick actions
I am having a hard time figuring out how to get my quick actions working when I launch my app with a quick action.
My quick actions work, however, if the app was in the background and re-launched with the quick action.
When I try to launch the app…

romero-ios
- 1,075
- 1
- 11
- 20
0
votes
1 answer
3D Touch Quick Actions not working properly with SpriteKit
I'm currently developing a game using Swift 3, SpriteKit, and Xcode 8 beta. I'm trying to implement static 3D Touch Quick Actions from the home screen through the info.plist. Currently, the actions appear fine from the home screen, but don't go to…

Nik
- 1,664
- 2
- 14
- 27
0
votes
0 answers
iOS 9 3D Touch Home screen Dyanamic quick action
As per the Apple documentation :
Define dynamic quick actions with the UIApplicationShortcutItem class and associated APIs.
So i just want to know that Can we use dynamic quick actions with our custom web service APIs?. I want to pull data from API…

SmartTester
- 51
- 2
0
votes
0 answers
How to set focus to a text box in a ViewController from a Quickaction via Swift
K...I'm totally new (basically reading Apple's developer documentation). (Sorry if I double-posted, but I couldn't find an answer)
I have a simple app (paid to develop from FreeLancer) with 2 ViewControllers. The first has 2 buttons that when…

Zero Kool
- 1
- 1
0
votes
1 answer
Handling dialogue after Quick Action
I have an iOS app that consists of an "Overview" scene as the initial view controller, an "EntryList" scene, and a "NewEntry" scene. They are organized with a navigation controller and connected in the mentioned order, using show (push) segues. The…

Stefan
- 1,036
- 10
- 32
0
votes
0 answers
How to open a specific ViewController using QuickActions in iOS app created with Xcode and Swift?
I created an iOS app with Xcode and Swift. That app contains five UIViewControllers. All ViewControllers are managed by a single UITabBarController.
I already configured some (static) QuickActions in Info.plist file.
I have problems with making…
user6423177
0
votes
1 answer
How to handle static QuickActions for iOS app using ViewControllers managed by a TabBarController in Xcode written in Swift
I already created some (static) QuickActions in Info.plist for my iOS app created in Xcode and written in Swift.
I have problems with making them able to open a ViewController. Of cause, I already googled, but nothing worked for me. If this counts:…
user6423177