- removeFromRunLoop:forMode:
Removes the receiver from the specified run loop.
レシーバを指定された実行ループから取り除きます。
Availability 有効性
Technology
- (void)scheduleInRunLoop:(NSRunLoop
*)aRunLoop
forMode:(NSRunLoopMode
)mode;
runLoop
Run loop in which to schedule the receiver. それにおいてレシーバが予定される実行ループ。
runLoopMode
Run loop mode in which to perform this operation, such as NSDefault
. See the Run Loop Modes section of the NSRun
class for other run loop mode values.
それにおいてこの演算を行う実行ループ、例えばNSDefault
など。NSRun
クラスの「実行ループモード」の節を他の実行ループモード値のために見てください。
You can use this method in conjunction with remove
to transfer the receiver to a run loop other than the default one. You should not attempt to run the receiver on multiple run loops.
あなたは、このメソッドをremove
と協力して使って、レシーバを省略時のもの以外の実行ループに移すことができます。あなたは、あるレシーバを複数の実行ループ上で動作させることを試みるべきではありません。
- removeFromRunLoop:forMode: