Type Method 型メソッド

archivedData(withRootObject:)

Returns a data object containing the encoded form of the object graph whose root object is given. データオブジェクトを返します、それのルートオブジェクトが与えられるオブジェクトグラフのエンコードされた形式を含んでいます。

Declaration 宣言

class func archivedData(withRootObject rootObject: Any) -> Data

Parameters パラメータ

rootObject

The root object of the object graph to archive. アーカイブすることになるオブジェクトグラフのルートオブジェクト。

Return Value 戻り値

A data object containing the encoded form of the object graph whose root object is rootObject. それのルートオブジェクトがrootObjectであるオブジェクトグラフのエンコードされた形式を含んでいるデータオブジェクト。

Discussion 議論

This method invokes init(forWritingWith:) and encodeRootObject(_:) to create a temporary archiver that encodes the object graph. このメソッドは、init(forWritingWith:)encodeRootObject(_:)を発動して、オブジェクトグラフをエンコードする一時アーカイバを作成します。

See Also 参照

Archiving data データをアーカイブする

Related Documentation 関連文書