func supportsCommand (NSScriptCommandDescription) -> Bool
Returns a Boolean value indicating whether the receiver or any superclass supports the specified command.
あるブール値を返します、レシーバまたは何らかのスーパークラスがこの指定されたコマンドをサポートするかどうかを指し示します。
Availability 有効性
Technology
func selector(forCommand commandDescription: NSScriptCommandDescription
) -> Selector
?
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セレクタ、それの引数名と型、そしてそれの戻り型(もしあれば)をカプセル化してください。
The selector from the receiver for the command specified by command
. Searches in the receiver first, then in any superclass. Returns NULL
if no matching selector is found.
command
によって指定されるコマンドに対するレシーバからのセレクタ。レシーバの中を最初に、それからあらゆるサブクラスを捜します。NULL
を返します、もし合致するセレクタが見つからないならば。
func supportsCommand (NSScriptCommandDescription) -> Bool