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

cancelPerform(_:target:argument:)

Cancels the sending of a previously scheduled message. 以前に予定されたメッセージの送信を取り消します。

Declaration 宣言

func cancelPerform(_ aSelector: Selector, 
            target: Any, 
          argument arg: Any?)

Parameters パラメータ

aSelector

The previously-specified selector. 以前に指定されたセレクタ。

target

The previously-specified target. 以前に指定された目標。

anArgument

The previously-specified argument. 以前に指定された引数。

Discussion 議論

You can use this method to cancel a message previously scheduled using the perform(_:target:argument:order:modes:) method. The parameters identify the message you want to cancel and must match those originally specified when the selector was scheduled. This method removes the perform request from all modes of the run loop. あなたはこのメソッドを使用することで、perform(_:target:argument:order:modes:)メソッドを使って以前に予定されたメッセージを取り消すことができます。パラメータそれらは、あなたが取り消したいメッセージを識別します、そしてもともとセレクタが予定された時に指定されたそれらと合致しなければなりません。このメソッドは、実行要請をその実行ループの全てのモードから取り除きます。

See Also 参照

Scheduling and Canceling Tasks タスクそれらを予定および取り消しする