watchOS用のSpeechKitフレームワークをインポートしようとしましたが、エラーが発生しました。時計と一緒に使う方法はありますか?私はSpeechkit Frameworkは、「そのようなモジュールのスピーチは」SpeechKitフレームワークはwatchOS 3でサポートされていますか?
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()
}
}
P1。あなたのコードを掲載し、あなたが得るものを誤りさせてください。 –
私はコードとエラーメッセージを追加しました – Derivative