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 に答える