Instance Method
インスタンスメソッド
cancelPerformSelectorsWithTarget:
Cancels all outstanding ordered performs scheduled with a given target.
与えられたターゲットで予定された全ての未解決の実行を取り消します。
Declaration
宣言
- (void)cancelPerformSelectorsWithTarget:(id)target;
Parameters
パラメータ
target
The previously-specified target.
以前に指定された目標。
Discussion
議論
This method cancels the previously scheduled messages associated with the target, ignoring the selector and argument of the scheduled operation. This is in contrast to cancelPerformSelector:target:argument:
, which requires you to match the selector and argument as well as the target. This method removes the perform requests for the object from all modes of the run loop.
このメソッドは、目標と結びつけられた以前に予定されたメッセージを取り消します、予定された演算のセレクタおよび引数を無視します。これはcancelPerformSelector:target:argument:
と対照的です、それはあなたにセレクタと引数を、もちろん目標も一致させるように要求します。このメソッドはオブジェクトに対する実行要請を実行ループの全モードから取り除きます。
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.
あるブロックを予定します、それは実行ループを、それが指定されたモードそれらのうちどれかにおいて動作する時に発動するものです。