+ dictionaryWithDictionary:
- initWithDictionary:
Availability 有効性
Technology
- (instancetype)initWithDictionary:(NSDictionary
<KeyType , ObjectType > *)otherDictionary
copyItems:(BOOL)flag;
otherDictionary
A dictionary containing the keys and values with which to initialize the new dictionary. それで新しい辞書を初期化することになるキーと値を含んでいる辞書。
flag
If YES
, each object in other
receives a copy
message to create a copy of the object—objects must conform to the NSCopying
protocol. In a managed memory environment, this is instead of the retain
message the object would otherwise receive. The object copy is then added to the returned dictionary.
YES
ならば、other
の中の各オブジェクトはcopy
メッセージを受け取って、そのオブジェクトのコピーを作成します—オブジェクトはNSCopying
プロトコルに準拠しなければなりません。管理されたメモリ環境では、これは、そうでなければオブジェクトが受け取るであろうretain
メッセージの代わりです。オブジェクトのコピーはそれからその返される辞書に加えられます。
If NO
, then in a managed memory environment each object in other
simply receives a retain
message when it is added to the returned dictionary.
NO
ならば、それから管理されたメモリ環境ではother
の各オブジェクトは、それがその返される辞書に加えられるとき単にretain
メッセージを受け取ります。
An initialized object—which might be different than the original receiver—containing the keys and values found in other
.
初期化されたオブジェクト – それは元のレシーバとは異なるかもしれません – other
において見つかったキーと値を含んでいます。
After an immutable dictionary has been initialized in this way, it cannot be modified. 不変の辞書がこの方法で初期化され終わった後は、それは修正されることはできません。
The copy
method performs a shallow copy. If you have a collection of arbitrary depth, passing YES
for the flag
parameter will perform an immutable copy of the first level below the surface. If you pass NO
the mutability of the first level is unaffected. In either case, the mutability of all deeper levels is unaffected.
copy
メソッドは、浅いコピーを行います。あなたが随意の深さのあるコレクションを持つならば、YES
をflag
パラメータに渡すことは表面下の第一階層の不変のコピーを行うことになります。あなたがNO
を渡すならば第一階層の可変性は影響を受けません。両方の場合とも、すべてのより深い階層の可変性は影響を受けません。
+ dictionaryWithDictionary:
- initWithDictionary: