Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的应用程序忽略一系列单词,而不是将它们视为“拼写错误”的单词。我在UITextChecker Class中遇到了 setIgnoredWords 方法,但我不知道如何使用它。
如果有人能帮我解决这个问题,那就太好了。
你应该使用:
[UITextChecker learnWord:@"myWordWhichMustNotBeChecked"];
把你的话放在那里。您始终可以通过以下方式检查您的单词是否被忽略:
if ([UITextChecker hasLearnedWord::@"myWordWhichMustNotBeChecked"])
并通过以下方式忘记它:
[UITextChecker unlearnWord:@"myWordWhichMustNotBeChecked"];