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

object(forKey:)

Returns the object associated with the specified key. 指定されたキーと結びつけられたオブジェクトを返します。

Declaration 宣言

func object(forKey aKey: String) -> Any?

Parameters パラメータ

aKey

A key in the key-value store. キー値保管の中のあるキー。

Return Value 戻り値

The object associated with the specified key or nil if the key was not found. 指定されたキーと結びつけられたオブジェクトまたはnil、もしキーが見つけられなかったならば。

Discussion 議論

You can use this method to retrieve objects whose type you do not necessarily know from the key-value store. The object returned by this method is always one of the property list types: NSNumber, NSString, NSDate, NSData, NSArray, or NSDictionary. あなたはこのメソッドを使って、それの型をあなたが必ずしも知っているわけではないオブジェクトをキー値保管から回収できます。このメソッドによって返されるオブジェクトは、常にプロパティ型:NSNumberNSStringNSDateNSDataNSArray、またはNSDictionaryの内の1つです。

See Also 参照

Getting Values 値を取得する

Related Documentation 関連文書