4

我尝试为 watchOS 导入 SpeechKit 框架并收到错误消息。有没有办法在手表上使用它?当我导入 Speechkit 框架说“没有这样的模块语音”时出现错误

import WatchKit
import Foundation
import Speech

class SpeechInterfaceController: WKInterfaceController, SFSpeechRecognizerDelegate {

override func awake(withContext context: Any?) {
    super.awake(withContext: context)

    // Configure interface objects here.
}

override func willActivate() {
    // This method is called when watch view controller is about to be visible to user
    super.willActivate()
}

override func didDeactivate() {
    // This method is called when watch view controller is no longer visible
    super.didDeactivate()
}

}

4

2 回答 2

2

语音框架不在 watchOS SDK 中(至少从 watchOS 3.0-3.1 开始)。您可以在框架文档中看到这一点:

语音框架文档截图

(如果它支持 watchOS、tvOS 或 macOS,它们将在该页面的 SDK 下列出。)

您还可以在 Xcode SDK 中查看可用框架集:查看Xcode.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS3.1.sdk/System/Library/Frameworks/ObjC 版本的 watchOS 系统头文件时,查看或查看 Xcode 编辑器窗格顶部的跳转栏,或者手动查看可用选项列表添加到项目的 WatchKit 扩展目标的链接框架和库。

于 2017-01-12T20:33:15.283 回答
1

SpeechKit 框架不适用于 watchOS 3。

要在手表应用程序中获得语音识别,您可以改用:

presentTextInputController(withSuggestions: nil, allowedInputMode: .plain) { (results) in
    if let results = results?.first as? String {
        self.label.setText(results)
    }
}
于 2017-01-12T18:43:10.953 回答