I am using a VoIP application where I need to initiate a call through Siri. I was able to initiate a call through Siri. But the problem is that every time the application starts, although the contact is not in the application’s contact list.
I am not sure how and where to do it. I mean, do not run the application if the application does not have such a contact as Skype. Skype responded with something like:
Hmm, Skype did not find.
Who do you want to call?
The following is a code snippet for an extension handler:
- (id)handlerForIntent:(INIntent *)intent { // This is the default implementation. If you want different objects to handle different intents, // you can override this and return the handler you want for that particular intent. return self; }
Why is this not working?
user7367573
source share