1

lexicontext ios sdk 是否在 utf8 中提供自动完成功能?

4

1 回答 1

1

恐怕不是开箱即用。

但我认为使用字典的搜索 API添加这个功能应该不会太难。

// first obtain a reference to the dictionary
Lexicontext *dictionary = [Lexicontext sharedDictionary];

// later, given a prefix that the user typed, do something like:
NSDictionary *words = [dictionary wordsWithPrefix:prefix];

您可能应该开始为至少 2 个字符的前缀提供自动完成功能。否则,您可能会得到长的结果。例如,[dictionary wordsWithPrefix:@"a"]返回的结果大约有 1800 个形容词、400 个副词、500 个动词……而且可能太慢了 :)

于 2013-01-14T15:32:00.437 回答