Instance Method インスタンスメソッド

inputText:client:

Handles key down events that do not map to an action method.

Declaration 宣言

- (BOOL)inputText:(NSString *)string 
           client:(id)sender;

Parameters パラメータ

string

The key down event, which is the text input by the client.

sender

The client object sending the key down events.

Return Value 戻り値

YES if the input is accepted; otherwise NO.

Discussion 解説

An input method should implement this method when using key binding (that is, it implements didCommandBySelector:client:).

See Also 参照

Supporting Key Binding