- addConnection:toRunLoop:forMode:
Adds the receiver to the list of ports monitored by a given run loop for the given input mode.
レシーバを、この与えられた入力モードに対して、ある与えられた実行ループによって監視されるポートのリストに加えます。
runLoop
in the given input mode, mode
.
レシーバを、その与えられた入力モード、mode
におけるrunLoop
によって監視されるポートの一覧から取り除きます。
Availability 有効性
Technology
- (void)removeConnection:(NSConnection
*)conn
fromRunLoop:(NSRunLoop
*)runLoop
forMode:(NSRunLoopMode
)mode;
connection
The connection object that invoked this method. このメソッドを発動した接続オブジェクト。
runLoop
The run loop to which to add the receiver. それに対してレシーバを加える実行ループ。
mode
The run loop mode in which to add the receiver. それにおいてレシーバを加える実行ループモード。
You should not call this method directly. The method is provided for subclassers who wish to provide their own custom types of NSPort
. The NSConnection
object, connection
, calls this method at the appropriate times.
あなたは、このメソッドを直接に呼び出すべきではありません。このメソッドは、NSPort
のそれら独自のあつらえの型を提供したいサブクラス作成者に対して提供されます。NSConnection
オブジェクト、connection
、は、このメソッドを適切な時に呼び出します。
- addConnection:toRunLoop:forMode: