gpt4 book ai didi

iphone - WatchKit:WatchKit 应用程序中的语音到文本转换

转载 作者:行者123 更新时间:2023-12-03 18:41:20 26 4
gpt4 key购买 nike

谁能帮我编写一份示例代码,以便在 Apple Watchkit 应用中添加语音到文本转换功能。

最佳答案

是的,这是可能的。这是文档: https://developer.apple.com/library/prerelease/ios/documentation/WatchKit/Reference/WKInterfaceController_class/index.html#//apple_ref/occ/instm/WKInterfaceController/presentTextInputControllerWithSuggestions:allowedInputMode:completion :

代码如下所示。您提供一个包含单词(或表情符号)的建议数组,并设置允许的输入模式,该模式只能接受动画表情符号、表情符号或计划文本。

[self presentTextInputControllerWithSuggestions:@[@"hello", @"world"] allowedInputMode:WKTextInputModePlain completion:^(NSArray *results) {
NSLog(@"results: %@", results);
}];

结果是这样的:

enter image description here

关于iphone - WatchKit:WatchKit 应用程序中的语音到文本转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28984678/

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