- scheduleInRunLoop:forMode:
Run loop from which to remove the receiver. それからレシーバを取り除く実行ループ。
Availability 有効性
Technology
- (void)removeFromRunLoop:(NSRunLoop
*)aRunLoop
forMode:(NSRunLoopMode
)mode;
runLoop
Run loop from which to remove 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 schedule
to transfer the receiver to a run loop other than the default one. Although it is possible to remove an NSNet
object completely from any run loop and then attempt actions on it, you must not do it.
あなたは、このメソッドをschedule
と協力して使って、レシーバを省略時のもの以外の実行ループに移すことができます。あるNSNet
オブジェクトを完全に何らかの実行ループから取り除いてそれからそれの上で様々な活動を試みることが可能であるとはいえ、あなたはそれをしてはいけません。
- scheduleInRunLoop:forMode: