Create individual connection instances as needed instead. 代わりに個々の接続インスタンスを必要に応じて作成してください。
defaultConnection
NSConnection
object for the current thread.
現在のスレッドに対する省略時のNSConnection
オブジェクトを返します。
Deprecated 非推奨
Availability 有効性
- macOS 10.0–10.6 Deprecated
Technology
- Foundation ファウンデーション
Declaration 宣言
+ (NSConnection
*)defaultConnection;
Return Value 戻り値
The default NSConnection
object for the current thread, creating it if necessary.
現在のスレッドに対する省略時のNSConnection
オブジェクト、必要ならばそれを作成します。
Discussion 議論
The default NSConnection
object uses a single NSPort
object for both receiving and sending and is useful only for vending an object; use the root
and register
methods to do this.
省略時のNSConnection
オブジェクトは、単一のNSPort
オブジェクトを受信および送信の両方に対して使います、そしてあるオブジェクトの販売に対してのみ有益です; root
およびregister
メソッドをこれを行うために使ってください。
Special Considerations 特別な注意事項
The singleton method of NSConnection
has been deprecated. It was difficult to ensure that the shared connection wasn’t being used by other operations on the thread on which the default connection was requested. Using [NSConnection new]
ensures that you get a unique connection object, preventing such collisions.
NSConnection
のシングルトンメソッドは、非推奨にされています。それは、共有される接続が、それの上で省略時の接続が要請されたスレッド上で他の演算によって使われていないことを確実にするのが困難でした。[NSConnection new]
を使うことは、あなたがある固有な接続オブジェクトを得ることを確実して、そのような衝突を防止します。