Instance Method インスタンスメソッド

removeConnection:fromRunLoop:forMode:

Removes the receiver from the list of ports monitored by runLoop in the given input mode, mode. レシーバを、その与えられた入力モード、modeにおけるrunLoopによって監視されるポートの一覧から取り除きます。

Declaration 宣言

- (void)removeConnection:(NSConnection *)conn 
             fromRunLoop:(NSRunLoop *)runLoop 
                 forMode:(NSRunLoopMode)mode;

Parameters パラメータ

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. それにおいてレシーバを加える実行ループモード。

Discussion 議論

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、は、このメソッドを適切な時に呼び出します。

See Also 参照

Creating Connections 接続を作成する