iOS: Is there any notification that Siri has appeared?

随声附和 提交于 2019-12-03 21:37:24

I ran a test and the following notifications are sent when Siri appears:

_UIApplicationWillAddDeactivationReasonNotification
UIApplicationWillResignActiveNotification

... and when Siri is dismissed:

_UIApplicationDidRemoveDeactivationReasonNotification
UIApplicationDidBecomeActiveNotification

So, no... since there isn't a public Siri API, and UIApplication doesn't send any Siri specific notifications, it looks like we're out of luck for now.

The only notification you'd get is a applicationDidEnterBackground (or something like that).

I don't think there are any Siri APIs at the moment so you would be looking at the OS as a whole.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!