我目前正在研究watchOS 3并发症,并希望将用户直接带到Scribble Input模式。有没有办法配置presentInputControllerWithSuggestions方法呢?
对于仅听写输入,有一个简单的解决方案,可以在suggest参数中使用nil,但似乎没有任何方法可以只允许Scribble输入。
答案 0 :(得分:-2)
presentTextInputController(withSuggestions: ["WOS3"],allowedInputMode: .plain,completion: { (result) -> Void in
if let text = result?.first as? String {
print(text)
DispatchQueue.main.async {
self.popToRootController()
}
}
})