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

getObjects:andKeys:

Returns by reference C arrays of the keys and values in the dictionary. 辞書の中のキーと値からなるC配列を参照によって返します。

Declaration 宣言

- (void)getObjects:(ObjectType  _Nonnull *)objects 
           andKeys:(KeyType  _Nonnull *)keys;

Parameters パラメータ

objects

Upon return, contains a C array of the values in the dictionary. 戻りでは、辞書の中の値それらからなるあるC配列を返します。

keys

Upon return, contains a C array of the keys in the dictionary. 戻りでは、辞書の中のキーそれらからなるあるC配列を返します。

Discussion 議論

The elements in the returned array and the keys array have a one-for-one correspondence, so that the nth object in the returned array corresponds to the the key in keys. 返される配列の中の要素、そしてkeys配列は、一対一の関連を持ちます、それで返される配列の中のn番目のオブジェクトはkeysの中のキーと対応します。

See Also 参照

Accessing Keys and Values キーと値にアクセスする