Instance Method
インスタンスメソッド
cancelPerformSelector:target:argument:
Cancels the sending of a previously scheduled message.
以前に予定されたメッセージの送信を取り消します。
Declaration
宣言
- (void)cancelPerformSelector:(SEL)aSelector
target:(id)target
argument:(id)arg;
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 performSelector: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.
あなたはこのメソッドを使用することで、performSelector:target:argument:order:modes:
メソッドを使って以前に予定されたメッセージを取り消すことができます。パラメータそれらは、あなたが取り消したいメッセージを識別します、そしてもともとセレクタが予定された時に指定されたそれらと合致しなければなりません。このメソッドは、実行要請をその実行ループの全てのモードから取り除きます。
See Also
参照
Scheduling and Canceling Tasks
タスクそれらを予定および取り消しする
- performBlock:
Schedules a block that the run loop invokes.
実行ループを発動するあるブロックを予定します。
- performInModes:block:
Schedules a block that the run loop invokes when it’s running in any of the specified modes.
あるブロックを予定します、それは実行ループを、それが指定されたモードそれらのうちどれかにおいて動作する時に発動するものです。