- selectorForCommand:
Returns the selector associated with the receiver for the specified command description.
指定されたコマンド記述に対するレシーバと結び付けられたセレクタを返します。
Availability 有効性
Technology
- (BOOL)supportsCommand:(NSScriptCommandDescription
*)commandDescription;
commandDescription
A description for a script command, such as duplicate
, make
, or move
. Encapsulates the scriptability information for that command, such as its Objective-C selector, its argument names and types, and its return type (if any).
あるスクリプトコマンド、例えばduplicate
、make
、またはmove
に対する記述。そのコマンドに対するスクリプト対応機能情報、それのObjective-Cセレクタ、それの引数名と型、そしてそれの戻り型(もしあれば)をカプセル化してください。
YES
if an the receiver or the instance of NSScript
of any superclass of the receiver’s class lists the command described by command
among its supported commands; otherwise, NO
.
YES
、もしレシーバまたはレシーバのもつクラスの何らかのスーパークラスのNSScript
がcommand
によって記述されるコマンドを、それのサポートするコマンドに含めてリストするならば;そうでなければNO
。
- selectorForCommand: