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

set(_:forKey:)

Sets a dictionary object for the specified key in the key-value store. 辞書オブジェクトをこの指定されたキーに対してキー値保管において設定します。

Declaration 宣言

func set(_ aDictionary: [String : Any]?, 
  forKey aKey: String)

Parameters パラメータ

aDictionary

A dictionary whose contents can be stored in a property list format. In other words, the objects in the dictionary must be of the types NSNumber, NSString, NSDate, NSData, NSArray, or NSDictionary. The total size (in bytes) of the dictionary and its contents must not exceed the per-key size limits. それの内容がプロパティリスト形式において格納されることが可能なある辞書。言い換えれば、辞書の中のオブジェクトは型NSNumberNSString, NSDateNSDataNSArray、またはNSDictionaryでなければなりません。辞書の全体の大きさ(バイトでの)は、キーごとの大きさ制限を越えてはいけません。

aKey

The key under which to store the value. The length of this key must not exceed 64 bytes using UTF8 encoding. それの下で値を格納することになるキー。このキーの長さは、UTF8符号化を使って64バイトを越えてはいけません。

See Also 参照

Setting Values 値を設定する