Questions tagged [siri]

Siri is a personal assistant that speaks to and gathers input from users to preform various tasks, compose messages, launch apps, and answer questions. Siri was announced by Apple alongside the iPhone 4S.

Siri is a personal assistant that speaks to and gathers input from users to preform various tasks, compose messages, launch apps, and answer questions. Siri was announced by Apple alongside the iPhone 4S and has since expanded to iPad and iPod Touch on some select models.

419 questions
13
votes
1 answer

Siri Dictation Bypasses UITextView:shouldChangeTextInRange Delegate

I use (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *) to perform real-time regex validation on every character input into a UITextView. This works well and even handles pasted text that might…
Sebastian Dwornik
  • 2,526
  • 2
  • 34
  • 57
12
votes
2 answers

Siri Integration for payments issue

In my application I support only EUR and USD currency. So when user tries to send payment with Siri to GBP, for example, I ask him to choose between EUR and USD. After that on the screen I see: 100 $ 100 EUR If I choose 100$ in…
Paul T.
  • 4,938
  • 7
  • 45
  • 93
10
votes
0 answers

Invalid Siri Support - Sample phrase "example phrase here" was not classified as a INCreateTaskListIntent intent

I am trying to implement SiriKit for iOS 11, specifically utilizing lists and notes. My AppIntentVocabulary.plist is shown below as a gist. AppName replaces my App's real name. https://gist.github.com/mitch2be/6e49d5e07e567bbc4d049bc565dad473 Each…
Randy J
  • 101
  • 2
10
votes
3 answers

Speech Recognition got an error on iOS

I'm studying the Speech Recognition on the iOS, but Every time I call the method [_recognitionRequest endAudio] , it always got an error in recognitionTaskWithRequest: the message is in the bottom. -(void) stopRecording { if (_disableSpeechSW ==…
user1028886
9
votes
1 answer

How to customise a Siri shortcut in the shortcuts app

How do you customise a Siri shortcut in the shortcuts app? This question is related to the new iOS 12 feature: Siri Shortcuts. Users can use Siri shortcuts to trigger app specific features (created by the developer) either through a custom defined…
Hapeki
  • 2,153
  • 1
  • 20
  • 36
9
votes
3 answers

Siri Intent Donation for Shortcuts ending up with error

I have created a simple intent for Siri shortcut and whenever i am trying to donate the intent, it is ending up with following error. Interaction donation failed: %@ Error Domain=IntentsErrorDomain Code=1901 "Cannot donate interaction { …
Vittal Pai
  • 3,317
  • 25
  • 36
8
votes
1 answer

Handling Errors with intent parameters and Dynamic options with Siri

I've an intent parameter set as dynamic from the intent definition. Let's say that the server where I get information for this option is currently down. It is not clear how to present to users the fact that the options at the moment cannot be…
MatterGoal
  • 16,038
  • 19
  • 109
  • 186
8
votes
2 answers

How can I open my SwiftUI app and perform a function using NSUseractivity from within Siri Intent Extension?

My Problem My app has its own Shortcuts actions created using Intents Extensions. They perform background actions perfectly. For some actions, I'm trying to make the intent extension open the main (container) app when run in Shortcuts and perform a…
mralexhay
  • 1,164
  • 1
  • 10
  • 16
8
votes
1 answer

Is it possible to have a Siri shortcut with a variable parameter?

There are a dozen related actions that users of my app can perform, and I'd like to let them do it with Siri, but I'm unsure how to effectively do that. I know I can donate a INIntent when a user performs an action, but is it possible to donate an…
se_puede_dev
  • 585
  • 7
  • 16
8
votes
2 answers

Launch app from INExtension in SiriKit

I want to use SiriKit to start a workout. Starting the workout requires opening the main app from the app extension. The boilerplate that Apple provides for the INStartWorkoutIntentHandling handler is func handle(startWorkout startWorkoutIntent:…
Tyler Sheaffer
  • 1,953
  • 1
  • 16
  • 16
7
votes
3 answers

How to access Siri voice selected by user in Settings in iOS 11

I am writing an app that includes text-to-speech using AVSpeechSynthesizer. The code for generating the utterance and using the speech synthesizer has been working fine. let utterance = AVSpeechUtterance(string: text) utterance.voice =…
picciano
  • 22,341
  • 9
  • 69
  • 82
7
votes
3 answers

WatchKit: Speech to text conversion in WatchKit Apps

Can any one help me with a sample code for adding Speech to Text conversion feature in Apple Watchkit apps.
Teja Kumar Bethina
  • 3,486
  • 26
  • 34
7
votes
2 answers

Where is iOS 6 Siri API

I read numerous press releases claiming that Apple would make Siri's API available in iOS, but now that Siri has been released I cannot find any documentation for the said API on developer.apple.com
Demiurg
  • 1,597
  • 8
  • 26
  • 40
6
votes
2 answers

iOS Swift 5 - How to implement Siri VoIP command "Call Person using the Example app" support without having to add shortcuts?

Goal I want to be able to trigger a VoIP call with Siri saying "Call Emily using the Next app", without adding shortcuts. Emily is a contact I added to my contacts, which holds my own phone number. I test the example app on my daily driver phone,…
6
votes
3 answers

Internationalisation issue with Sirikit Custom Intents & iOS 13.4.1

I implemented two Custom Intents with Sirikit in my iOS app. When I was developing them I had iOS 13.3 installed in my iphone and one of my intents has a Siri Dialog prompt asking for the value of one parameter. All the app is translated to english…
Diego Navarro
  • 9,316
  • 3
  • 26
  • 33
1
2
3
27 28