By Default WatchOS's presentTextInputController is recognizing in english language, we can change the recognizing language using deep touch.How to get the language code when user changes language using deep touch while recognizing?
Asked
Active
Viewed 319 times
1 Answers
0
I don't think this is possible at the moment. Looking at the documentation of WatchKit, there doesn't seem to be an API for this.
However, you can call presentTextInputControllerWithSuggestions(forLanguage:allowedInputMode:completion:)
if you want to specify what language you can handle. See the official documentation.

Dávid Pásztor
- 51,403
- 9
- 85
- 116
-
presentTextInputControllerWithSuggestions(forLanguage:allowedInputMode:completion:) this method just take suggestion based on language and any time new language is detected it is called again – Atif Jul 31 '19 at 12:46