Type Method 型メソッド

archiveRootObject:toFile:

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

Declaration 宣言

+ (BOOL)archiveRootObject:(id)rootObject 
                   toFile:(NSString *)path;

Parameters パラメータ

rootObject

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

path

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

Return Value 戻り値

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

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 NSPropertyListBinaryFormat_v1_0. このメソッドは、ルートオブジェクトによって書式設定されるグラフを、あるデータオブジェクトへとアーカイブします、それからアトミックにそれをその与えられたパスへと書き出します。アーカイブのフォーマットは、NSPropertyListBinaryFormat_v1_0です。

See Also 参照

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