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

makeNewConnection:sender:

Returns a Boolean value that indicates whether the parent should allow a given new connection to be created and configured. あるブール値を返します、それは親がある与えられた新しい接続を作成されるそして構成設定されることを許可されるべきかどうかを指し示します。

Declaration 宣言

- (BOOL)makeNewConnection:(NSConnection *)conn 
                   sender:(NSConnection *)ancestor;

Parameters パラメータ

newConnection

The new connection. 新しい接続。

parentConnection

The parent connection. 親接続。

Return Value 戻り値

YES if parentConnection should allow newConnnection to be created and configured, NO if parentConnection should refuse and immediately release newConnection. YES、もしparentConnectionnewConnnectionに作成されてそして構成設定b4pepZweされることを許可するべきならば、NO、もしparentConnectionが辞退してそして直ぐにnewConnectionを開放すべきならば。

Discussion 議論

Use this method to limit the number of NSConnection objects created in your application or to change the parameters of child NSConnection objects. このメソッドを使って、あなたのアプリケーションにおいて作成されたNSConnectionオブジェクトの数を制限してください、または子NSConnectionオブジェクトのパラメータを変更してください。

Use NSConnectionDidInitializeNotification instead of this delegate method if possible. NSConnectionDidInitializeNotificationをこの委任先メソッドの代わりに使ってください、もし可能ならば。

See Also 参照

Responding to a Connection 接続に応答する