Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
27 views

I want to say something in one shot like: "Start my intent that does command xyz" It currently breaks it down into 2 separate steps, where I have to specify "Start my intent" first ...
Tim Nuwin's user avatar
  • 2,927
1 vote
0 answers
45 views

I'm not using HomeKit, directly I want to set temperature of a AC or Thermostat devices by using Siri voice command like 'Hay Siri, Set Thermostat temperature 25 degree'. Here I'm successfully ...
Naresh's user avatar
  • 18.1k
2 votes
0 answers
60 views

I am working on App Intents, Shortcuts, and Siri on iOS. It seems that Siri delivers Strings, what I would need is a Double. I found that there is a Resolvers API within the App Intents Framework. ...
Phil's user avatar
  • 21
0 votes
0 answers
20 views

I have a custom intent. When my app is unable to complete the resolution of a parameter within the app extension, I need to be able to continue within the app. I am unable to figure out what the ...
JeffB6688's user avatar
  • 3,890
0 votes
1 answer
51 views

I'm providing some shortcuts to the system for my app via AppShortcutsProvider. This seems to work in general, but they look quite different from the entries of other apps (compare below screenshots). ...
Micky's user avatar
  • 5,849
0 votes
0 answers
22 views

I can’t get this to work on my iPad. Looking for someone’s expertise to help. I followed instructions that I found online but I didn't understand how to use variables. I was supposed to use variables ...
Jon Wheeler's user avatar
0 votes
0 answers
40 views

Should I donate an custom AppIntent instance that I have to the system using the donate() API. For example: User adds a note in an app (there is an custom AppIntent that performs that job) Should I ...
Vladimir Amiorkov's user avatar
1 vote
0 answers
74 views

Why doesn't my App Shortcut appear in Shortcuts when using a parameter, but it works when I remove the parameter? class AppShortcuts: AppShortcutsProvider { static var appShortcuts: [AppShortcut] {...
Adventure's user avatar
2 votes
0 answers
117 views

I have created an AppIntent and added it to shortcuts to be able to read by Siri. When I say the phrase, the Siri intent dialog appears just fine. I have added a custom SwiftUI View inside Siri dialog ...
Swati's user avatar
  • 1,448
0 votes
0 answers
11 views

When using the system share sheet, I see a row of user-specific sharing suggestions for third-party apps beneath the main share options. How can I programmatically add users from my app to this ...
ahah's user avatar
  • 1
0 votes
1 answer
523 views

How to add shortcuts to my app or to custom section inside my app ? Like Phone app when you use iOS search (Spotlight) and type phone you will get phone app and most called contacts for example. Or ...
Younes Ans's user avatar
0 votes
0 answers
90 views

Happy New Year, all! I'm trying to migrate my CoreData app to SwiftData. Prior to the migration, the Siri Shortcut's EntityPropertyQuery worked just fine, but now I'm struggling how to combine the [...
zkvvoob's user avatar
  • 496
0 votes
1 answer
131 views

I am trying to setup Shortcuts and AppIntents to allow a user to summon Siri and open a dialog to create a new record with two or more SwiftData model attributes. I have successfully coded for Siri to ...
JohnSF's user avatar
  • 4,400
0 votes
1 answer
137 views

I'm struggling to understand how to implement AppIntents and Shortcuts in an iOS app. I am able to add a shortcut for opening the app in the following code as OpenThing.swift. After adding the ...
JohnSF's user avatar
  • 4,400
1 vote
2 answers
485 views

I have a react native app but right now I am mainly focused on the iOS module. First I created an intent using an intent definition file but then I decided to convert this to an app intent. Overall it ...
Mo Hatami's user avatar
-1 votes
1 answer
48 views

i im currently developing vpn app and i want to add siri shortcuts for users so that for example when user enters youtube - my vpn appExtension disconnects vpn or connects it depending on what ...
максим мартынов's user avatar
5 votes
1 answer
344 views

I have a Flutter application where I use GetX for state management. In the project, I want to integrate Siri. When I say "Open Homework MyApp" to Siri, I want the app to open and navigate to ...
sertancayci's user avatar
1 vote
0 answers
82 views

I have created an AppShortcutsProvider containing a list of AppShortcuts. Is it possible to add shortcuts to this list conditionally? Or, can I add new shortcuts when an action is completed so that ...
Fabio Mussi's user avatar
0 votes
1 answer
297 views

I'm aware that we can create shortcuts programmatically to our own app with the INUIAddVoiceShortcutViewController. I did that, it works, that's fine. But I would like now to automate the creation of ...
Żabojad's user avatar
  • 3,094
1 vote
0 answers
93 views

AppIntents can return IntentResults of varying types. One of the supported types is a URL. I would like to be able to use the URL to a file within the app's sandbox and return this as an IntentResult ...
MCDeltaT's user avatar
  • 147
0 votes
1 answer
339 views

I'm developing an iOS app using the App Intents framework. I've created an 'OpenShowIntent' that should allow users to open a show from outside the app by either: Invoking a shortcut and providing a ...
user26425844's user avatar
1 vote
0 answers
102 views

I am working on an iOS application for hitchhikers to document their trips. It would be quite convenient to have an iOS Shortcut for creating a record for both pickup and dropoff locations. I am using ...
Jakub Dubec's user avatar
1 vote
1 answer
203 views

Using App Shortcuts with app intents, Siri only responds to the first shortcut defined in the app shortcut below. struct MementoShortcuts: AppShortcutsProvider { @AppShortcutsBuilder static ...
Knotbin's user avatar
  • 21
1 vote
0 answers
147 views

I'm struggling to get the Url into my database notion. Here is one of the 400 i get : {"status":400,"object":"error","code":"validation_error","...
Antoine Pilot's user avatar
-1 votes
1 answer
156 views

I'm developing a Swift application for macOS. I would like it to be able to interact with the user's shortcuts (block programs in the Shortcuts application, fig. 1). But I can't locate them... Do you ...
iStuces's user avatar
  • 73
1 vote
1 answer
464 views

I am developing an app with SwiftUI and would like to provide my own Siri shortcuts. I have created my own AppEntities for this. Unfortunately, I can't get the shortcut to work: Whenever I select an ...
Foaly333's user avatar
0 votes
1 answer
390 views

I'm new to Swift development and I am encountering an issue that I believe may be due to an error on my part. I have two questions regarding the following code: import AppIntents import SwiftUI import ...
Bruno Alves's user avatar
1 vote
1 answer
370 views

I'm using LiveActivityIntent in the following way to add interactive buttons to my Live Activity: struct Test: LiveActivityIntent { static var title: LocalizedStringResource = "Test"...
leonboe1's user avatar
  • 1,185
2 votes
1 answer
1k views

The Shortcuts app offers the possibility to trigger shortcuts/intends when a wallet credit card is used and a new transaction is created. I would like to add transaction details to one of my apps and ...
Andrei Herford's user avatar
1 vote
1 answer
469 views

I'm currently following a tutorial to develop an iOS interactive widget. Basically, in my widget, I want to have a button that users can tap on to record a number. Ideally, I would like it to prompt ...
Nash's user avatar
  • 23
1 vote
0 answers
510 views

I'm facing an issue with Apple's intentdefinition file while adding a new intent for Shortcuts integration in my app. As you can see from the screenshot below, I've filled out the Title and ...
trianglejerry00's user avatar
5 votes
0 answers
300 views

I refer to having the App Intents looking like these widgets inside the Shortcuts app. Is that possible or only reserved for Flutter Plugin and Flutter Apps? Integrate Siri shortcuts AppIntents in ...
Hichem Romdhane's user avatar
0 votes
1 answer
319 views

I’m building an iOS shortcut that finds all events in a specified calendar for a chosen time period (start and end date). The result is then iterated through each event with a few actions that ...
ScoobyDooku's user avatar
6 votes
0 answers
1k views

I am trying to create a simple app that "blocks" other apps if a certain condition is not met. I am currently using the IOS shortcuts and have set up an automation that opens my app A ...
EliasOverflow's user avatar
0 votes
1 answer
1k views

I created an app that fetches bike parking spots around me. In the app, every thing works perfectly. Now, I'm trying to create a shortcut that triggers the fetching of the parking spots. Unfortunately,...
Zim's user avatar
  • 1
0 votes
1 answer
2k views

I am attempting to create an apple automation shortcut in the Apple shortcuts app to do the following to do the following: Basically I would like to append to a note every day to keep track of my ...
Mr A's user avatar
  • 1
3 votes
1 answer
780 views

I’m creating a simple AppIntents Shortcut that requires UIKit to open a URL in my app. Though, once I add the import UIKit to my file, Xcode shows me the following warning at the ...
alexkaessner's user avatar
  • 3,038
1 vote
0 answers
244 views

I have an AppIntent that is provided as a shortcut and allows the user to open the app from Spotlight in iOS 17. When the shortcut is run, it opens the app with: static let openAppWhenRun: Bool = true ...
Tom Coomer's user avatar
  • 6,647
0 votes
1 answer
492 views

I recently installed the newest version of MacOS and also uninstalled Xcode and its CLI tools. Because the uninstallation process was quite messy (I had to alter zsh profile and reinstall Python since ...
whatphilipcodes's user avatar
10 votes
0 answers
877 views

With iOS/Apple AppIntents, your iOS app can declare AppIntents, which users can use from the Shortcuts App to use as steps in their own manually/Siri/etc triggered Shortcuts, but also from their own ...
heliam1's user avatar
  • 243
2 votes
1 answer
205 views

I’m trying to extend my „Find XYZ“ action of my Reading-AppEntity to accept filtering for another Meter-AppEntity type. So basically I want to get all elements that have a Core Data relationship to ...
alexkaessner's user avatar
  • 3,038
4 votes
1 answer
550 views

I refer to having the App Intents looking like these widgets inside the Shortcuts app. Is that possible or only reserved for Apple apps? I thought it would be enough adding a shortTitle and ...
V. Morris's user avatar
8 votes
2 answers
1k views

I’m working on supporting iOS 17’s new Shortcuts features. I have a multiple App Shortcuts including one that launches the app in a selected tab. The tab selection is done via a custom AppView enum ...
alexkaessner's user avatar
  • 3,038
0 votes
1 answer
270 views

I’ve seen that some of Apple’s apps group the automatically generated "Find XYZ" actions into custom categories. For example Safari, Calendar, or Reminders do this. I know that you can group ...
alexkaessner's user avatar
  • 3,038
3 votes
1 answer
460 views

I’m building an AppIntent Shortcut and want to perform fetch requests of my apps Core Data to feed the Shortcut with the data. My Code Core Data Handling: class HomesHandler: NSObject, ...
alexkaessner's user avatar
  • 3,038
1 vote
2 answers
2k views

Why? I have REST API service where user can place marks on any day of the year. There is Endpoint (URL) that allows user to place mark on current day, for example POST request to /api/mark/1 So, I ...
mkc's user avatar
  • 48
2 votes
0 answers
191 views

I have a very simple AppIntent but Siri is easily confused when capturing parameters and responds with "Something went wrong" then silently terminates the process - how do I see the error ...
Kittovski's user avatar
  • 187
0 votes
0 answers
141 views

I'm testing with this simple AppIntent that only counts from 1 to 10 each second. import AppIntents struct Loop10SecCount: AppIntent { static var title: LocalizedStringResource = "Loop 10 ...
Hlung's user avatar
  • 14.4k
0 votes
0 answers
710 views

I want to define an AppIntent/Shortcut with a number @Parameter (of type double) that has a defined range. The range should be one-sided to only include positive numbers. Basically like the Swift ...
alexkaessner's user avatar
  • 3,038
3 votes
0 answers
720 views

I have defined custom App Intents using the new App Intent framework provided in iOS 16. However, not all of these phrases seem to work for Siri. Sometimes it will open another app or will perform a ...
Michael Jajou's user avatar

1
2 3 4 5 6