- spellServer:didForgetWord:inLanguage:
- spellServer:didLearnWord:inLanguage:
- spellServer:suggestCompletionsForPartialWordRange:inString:language:
Availability 有効性
Technology
- (void)spellServer:(NSSpellServer
*)sender
recordResponse:(NSUInteger
)response
toCorrection:(NSString
*)correction
forWord:(NSString
*)word
language:(NSString
*)language;
sender
The spell server. スペルサーバー。
response
The user’s response. ユーザの応答。
correction
The corrected word. This should match the original correction. 訂正された単語。これは、元の訂正と合致すべきです。
word
The original word. This should match the original correction. 元の単語これは、元の訂正と合致すべきです。
language
The language being edited. This should match the original correction. 編集されている言語。これは、元の訂正と合致すべきです。
When the user accepts, rejects, or edits an autocorrection, the view notifies the NSSpell
class of what happened in the client application, and NSSpell
then invokes this method, so that it can record that and modify future autocorrection behavior based on what it has learned from the user's actions.
ユーザが自動訂正を受諾、拒否、または編集する場合、ビューはNSSpell
クラスに何がクライアントアプリケーションで起こったか通知します、そしてNSSpell
はこのメソッドを発動します、そうすることでそれは、それを記録して、将来の自動訂正挙動をそれがユーザの動作から学んだことに基づいて修正できます。
- spellServer:didForgetWord:inLanguage:
- spellServer:didLearnWord:inLanguage:
- spellServer:suggestCompletionsForPartialWordRange:inString:language: