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

performDefaultImplementation()

Overridden by subclasses to provide a default implementation for the command represented by the receiver. サブクラスによってオーバーライドされることで、レシーバによって表されるコマンドに対する省略時の実装を提供します。

Declaration 宣言

func performDefaultImplementation() -> Any?

Discussion 議論

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 NSScriptCommand only if you need to provide a default implementation of a command. あなたがNSScriptCommandのサブクラスを作成する必要があるのは、あなたがコマンドの省略時の実装を提供する必要がある場合のみです。

See Also 参照

Executing the command コマンドを実行する