gpt4 book ai didi

ios - 没有捐赠的 Siri Intents 在设置中不可见

转载 作者:行者123 更新时间:2023-11-28 23:45:58 29 4
gpt4 key购买 nike

我已经按照以下教程中的描述创建了一个 Siri Intent:link to the tutorial

我添加了一个带有单个参数的意图。我还没有捐赠意向。我在“设置”的“Siri 快捷方式”页面中看不到意图。

是否应该在意图在 Siri 设置中显示之前捐赠?

在我的应用程序中,余额总是显示在主页上,所以我应该在用户每次查看主页时提供快捷方式吗?是否可以将快捷方式指定为“可用”,以便在应用安装时自动添加到设置中?

Settings page

最佳答案

您可以建议快捷方式,尽管用户没有在应用中执行特定操作,这会导致捐赠。为此,您必须创建用户可能感兴趣的建议,并将它们提供给 INVoiceShorcutCenter

以下代码可能对您有所帮助:

var suggestions : [INShortcut] = []

let intent = CustomIntent()
intent.name = "Suggested Shortcut"

if let image = UIImage(named: "intenticon"), let data = image.pngData() {
intent.setImage(INImage(imageData: data), forParameterNamed:\CustomIntent.name)
}

intent.suggestedInvocationPhrase = "Show the name"
if let shortcut = INShortcut(intent: intent) {
suggestions.append(shortcut)
}

// Suggest the shortcuts
INVoiceShortcutCenter.shared.setShortcutSuggestions(suggestions)

要删除所有建议,您只需建议一个空的 INShortcut 数组。

关于ios - 没有捐赠的 Siri Intents 在设置中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52665967/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com