0

所以我有我的手表应用程序要求输入如下文本,但它得到了这个没有意义的错误!

在此处输入图像描述

我希望有人可以帮助我解决这个问题?提前致谢!

4

1 回答 1

0

这是根据文档的定义:

func presentTextInputControllerWithSuggestions(_ suggestions: [String]?,
                          allowedInputMode inputMode: WKTextInputMode,
                                completion completion: ([AnyObject]?) -> Void)

问题似乎出在您的最后一个参数中,即 String -> Void。你到达那里[AnyObject]?不是字符串。

于 2015-07-25T17:54:14.293 回答