Type Method 型メソッド

dictionaryWithObject:forKey:

Creates a dictionary containing a given key and value. ある与えられたキーと値を含んでいる辞書を作成します。

Declaration 宣言

+ (instancetype)dictionaryWithObject:(ObjectType)object 
                              forKey:(id<NSCopying>)key;

Parameters パラメータ

anObject

The value corresponding to aKey. aKeyに対応している値。

If this value is nil, an NSInvalidArgumentException is raised. この値がnilならば、NSInvalidArgumentExceptionが引き起こされます。

aKey

The key for anObject. anObjectに対するキー。

If this value is nil, an NSInvalidArgumentException is raised. この値がnilならば、NSInvalidArgumentExceptionが引き起こされます。

Return Value 戻り値

A new dictionary containing a single object, anObject, for a single key, aKey. ある単一のオブジェクトanObjectで、ある単一のキーaKeyに対するものを含んでいる新しい辞書。

See Also 参照

Creating a Dictionary from Objects and Keys 辞書をオブジェクトとキーから作成する