func execute() -> Any?
Executes the command if it is valid and returns the result, if any.
コマンドを実行します、もしそれが有効ならば、そして結果を返します、もしあれば。
Availability 有効性
Technology
func performDefaultImplementation() -> Any?
Do not invoke this method directly. execute()
invokes this method when the command being executed is not supported by the class of the objects receiving the command. The default implementation returns nil
.
このメソッドを直接に発動しないでください。execute()
がこのメソッドを発動するのは、実行されるコマンドがそのコマンドを受け取っているオブジェクトのクラスによってサポートされない時です。省略時の実装はnil
を返します。
You need to create a subclass of NSScript
only if you need to provide a default implementation of a command.
あなたがNSScript
のサブクラスを作成する必要があるのは、あなたがコマンドの省略時の実装を提供する必要がある場合のみです。
func execute() -> Any?