Type Method 型メソッド

archiveRootObject(_:toFile:)

Archives an object graph rooted at a given object to a file at a given path. 与えられたオブジェクトでルートされるオブジェクトグラフをある与えられたパスでのファイルにアーカイブします。

Declaration 宣言

class func archiveRootObject(_ rootObject: Any, 
                      toFile path: String) -> Bool

Parameters パラメータ

rootObject

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

path

The path of the file in which to write the archive. その中にアーカイブを書き出すことになるファイルのパス。

Return Value 戻り値

true if the operation was successful, otherwise false. 操作が成功したならばtrue、そうでないならばfalse

Discussion 議論

This method archives the graph formed by the root object to a data object, then atomically writes it to the given path. The format of the archive is PropertyListSerialization.PropertyListFormat.binary. このメソッドは、ルートオブジェクトによって書式設定されるグラフを、あるデータオブジェクトへとアーカイブします、それからアトミックにそれをその与えられたパスへと書き出します。アーカイブの書式設定は、PropertyListSerialization.PropertyListFormat.binaryです。

See Also 参照

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