我正在使用WatchKit App。在这个应用程序中,有一些用户应填写的字段,
我搜索了如何处理iWatch中的输入字段,我找到了以下代码:
presentTextInputController(withSuggestions: ["1"], allowedInputMode: WKTextInputMode.plain) { (arr: [Any]?) in
if let answers = arr as? [String] {
if let answer = answers[0] as? String {
self.speechLabel.setText(answer)
}
}
}
这段代码给了我两个选择:Diction和scribble,即
在我的应用程序中,我只想支持涂鸦而不是两者,
我尝试将 withSuggestions 参数作为nil传递,但应用程序会指示我进行操作,而不是涂鸦。
有没有办法让用户只使用涂鸦?