iOS App快捷指令(App Intents)在系统搜索服务中注册shortcuts
- 前言
- 效果图
- 实现快捷指令
-
- 1. 定义AppIntent
- 2. 定义`AppShortcutsProvider
- 使用
- 参考资料
前言
网上很多资料都是关于IntentsExtension
的,但是IntentsExtension
只能实现快捷指令的添加,无法在系统搜索服务中搜索到。
这时候就得用到App Intents
了。
下面实现一个简单的App快捷指令,实现点击指令唤醒App并对相应的指令进行页面跳转。
效果图
![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/f8a3572358ed4f5c8b37a89b3f8238b9.png
实现快捷指令
App Intents
只支持swiftApp