So I have my watch app asking for text input as is below but it gets this error that makes NO sense!
I was hoping someone could help me out with this? Thanks in advance!
So I have my watch app asking for text input as is below but it gets this error that makes NO sense!
I was hoping someone could help me out with this? Thanks in advance!
This is the definition according to the documentation:
func presentTextInputControllerWithSuggestions(_ suggestions: [String]?,
allowedInputMode inputMode: WKTextInputMode,
completion completion: ([AnyObject]?) -> Void)
The problem seems to be in your last parameter which is String -> Void. You get there [AnyObject]?
not String.