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

set(_:forKey:)

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

Declaration 宣言

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

Parameters パラメータ

anArray

An array whose contents can be stored in a property list format. In other words, the objects in the array must be of the types NSNumber, NSString, NSDate, NSData, NSArray, or NSDictionary. The total size (in bytes) of the array 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 値を設定する