func selector(forCommand : NSScriptCommandDescription) -> Selector?
Returns the selector associated with the receiver for the specified command description.
指定されたコマンド記述に対するレシーバと結び付けられたセレクタを返します。
Availability 有効性
Technology
func supportsCommand(_ commandDescription: NSScriptCommandDescription
) -> Bool
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セレクタ、それの引数名と型、そしてそれの戻り型(もしあれば)をカプセル化してください。
true
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, false
.
true
、もしレシーバまたはレシーバのもつクラスの何らかのスーパークラスのNSScript
がcommand
によって記述されるコマンドを、それのサポートするコマンドに含めてリストするならば;そうでなければfalse
。
func selector(forCommand : NSScriptCommandDescription) -> Selector?