問題タブ [nstextinput]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
macos - NSTextInputClientで入力メソッドのステータスを確認するには?
docs から、入力コンテキストが次のメソッドのいずれかをテキスト ビューに送信することがわかります。
insertText:replacementRange:
setMarkedText:selectedRange:replacementRange:
doCommandBySelector:
私のテストケースでは、入力メソッドを有効にすると、keyDown
をトリガーできますが、最後の文字までsetMarkedText:selectedRange:replacementRange
削除し続けると、上記のメソッドをトリガーせずに入力メソッドが非アクティブになります。markedText
入力メソッドが非アクティブ化されるとすぐに何かを実行できるように、非アクティブ化のためのフックのようなものはありますか?