+ proxyWithLocal:connection:
An object in the receiver’s address space. レシーバのもつアドレス空間の中のあるオブジェクト。
NSDistantObject
object as a local proxy for a given object.
NSDistantObject
オブジェクトを、ある与えられたオブジェクトに対するローカルプロキシとして初期化します。
Availability 有効性
Technology
- (instancetype)initWithLocal:(id)target
connection:(NSConnection
*)connection;
anObject
An object in the receiver’s address space. レシーバのもつアドレス空間の中のあるオブジェクト。
aConnection
The connection for the returned proxy. 返されるプロキシに対する接続。
An initialized NSDistant
object that serves as a local proxy for an
. If a proxy for an
and a
already exists, the receiver is released and the existing proxy is retained and returned.
ある初期化されたNSDistant
オブジェクト、それはan
に対するローカルプロキシとして奉仕します。an
とa
に対するプロキシが既に存在するならば、レシーバは解放されます、そして既存のプロキシが保持されて返されます。
Other applications connect to the proxy using the NSConnection
connection
class method.
他のアプリケーションは、プロキシに、NSConnection
のconnection
クラスメソッドを使って接続します。
Local proxies should be considered private to their NSConnection
objects. Only an NSConnection
object should use this method to create them, and your code shouldn’t retain or otherwise use local proxies.
ローカルプロキシそれらは、それらのNSConnection
にとってプライベードとみなされるべきです。あるNSConnection
オブジェクトだけが、このメソッドを使ってそれらを作成するべきです、そしてあなたのコードはローカルプロキシを保持すべきではありませんし、さもなければ使うべきではありません。
This is the designated initializer for local proxies. It returns an initialized object, which might be different than the original receiver これは、ローカルプロキシに対する指定イニシャライザです。それはある初期化されたオブジェクトを返します、それは元のレシーバとは異なるかもしれません。
+ proxyWithLocal:connection: