I am trying to implement an airlines app which will talkback in text and return miles for the users. I am using INSearchForAccountsIntentHandling
protocol to implement it.
Like I want siri to reply saying "Your miles for the account no: 1000211 is 3000" in text on the screen of siri. I didnt find any documentation online on how to do it.
Firstly, is it even possible to do that ?
Secondly if it is, how can I implement it in my method below:
func handle(intent: INSearchForAccountsIntent, completion: @escaping (INSearchForAccountsIntentResponse) -> Void) {
print("Sirikit is working")
}