- spellServer:suggestGuessesForWord:inLanguage:
- spellServer:checkGrammarInString:language:details:
- spellServer:findMisspelledWordInString:language:wordCount:countOnly:
Availability 有効性
Technology
- (NSArray
<NSTextCheckingResult
*> *)spellServer:(NSSpellServer
*)sender
checkString:(NSString
*)stringToCheck
offset:(NSUInteger
)offset
types:(NSTextCheckingTypes
)checkingTypes
options:(NSDictionary
<NSString
*,id> *)options
orthography:(NSOrthography
*)orthography
wordCount:(NSInteger
*)wordCount;
sender
Spell server making the analysis request. 分析要請をするスペルサーバー。
stringToCheck
String to analyze. 分析する文字列。
offset
The offset in the string. 文字列の中のオフセット。
checkingTypes
The text checking types to perform. 実行するテキスト検査型。
options
オプション
A dictionary defining the actions to be taken while checking this string. See Constants in NSSpell
for the possible keys.
この文字列を検査している間になされる動作を定義している辞書。「定数」をNSSpell
において可能なキーのために見てください。
orthography
The identified orthography of string
. See NSOrthography
for more information.
識別されるstring
の正書法。NSOrthography
をさらなる情報のために見てください。
wordCount
On output, returns by-reference the number of words from the beginning of the string object until the misspelled word (or the end of string). 出力では、参照によって単語の数を文字列オブジェクトの始まりから綴り間違い単語(または文字列の終わり)まで返します。
An array of NSTextCheckingResult instances of the spelling, grammar, or correction types, depending on the checking
requested.
スペリング、文法、または訂正型のNSTextCheckingResultインスタンスの配列、要請されたchecking
に依存します。
This method is optional, but if implemented it will be called during the course of unified text checking via the NSSpell
check
and request
methods. This allows spelling and grammar checking to be performed simultaneously, which can be significantly more efficient, and allows the delegate to return autocorrection results as well.
このメソッドは随意です、しかし実装されるならばそれは統合テキスト検査の進行の間にNSSpell
のcheck
とrequest
メソッド経由で呼び出されます。これは、スペルと文法の検査が同時に実行されることを可能にします、それは著しくより効率的でありえます、そして委任先に自動訂正の結果もまた返させます。
If this method is not implemented, then unified text checking will call the separate spelling and grammar checking methods instead. このメソッドが実装されないならば、そのとき統合テキスト検査は個々のスペルおよび文法の検査メソッドを代わりに呼び出します。
This method may be called repeatedly with strings representing different subranges of the string that was originally requested to be checked; the offset argument represents the offset of the portion passed in to this method within that original string, and should be added to the origin of the range in any NSText
returned.
このメソッドは、もともと検査されるように要請された文字列の異なる下位範囲を表している文字列それらで繰り返し呼び出されるかもしれません、offset引数は、このメソッドに渡される部分のその元の文字列内でのオフセットを表します、そして何らかの返されるNSText
の中の範囲の原点に加えられるべきです。
- spellServer:suggestGuessesForWord:inLanguage:
- spellServer:checkGrammarInString:language:details:
- spellServer:findMisspelledWordInString:language:wordCount:countOnly: