Instance Method
インスタンスメソッド
objectForKey:
Returns a the value associated with a given key.
与えられたキーと結び付けられた値を返します。
Declaration
宣言
- (ObjectType)objectForKey:(KeyType)aKey;
Parameters
パラメータ
aKey
The key for which to return the corresponding value.
それに対して対応する値を返すことになるキー。
Return Value
戻り値
The value associated with aKey
, or nil
if no value is associated with aKey
.
aKey
と結び付けられた値、またはnil
、もしaKey
と結び付けられた値がないならば。
See Also
参照
Accessing Content
内容にアクセスする
- keyEnumerator
Returns an enumerator object that lets you access each key in the map table.
あなたにマップテーブルの中の各キーにアクセスさせる列挙子オブジェクトを返します。
- objectEnumerator
Returns an enumerator object that lets you access each value in the map table.
あなたにマップテーブルの中の各値にアクセスさせる列挙子オブジェクトを返します。
count
The number of key-value pairs in the map table.
マップテーブルの中のキー値ペアの数。