+ unarchiveObjectWithFile:
Decodes and returns the object archived in the file
path
.
ファイルpath
においてアーカイブされるオブジェクトをデコードして返します。
NSData
object.
与えられたNSData
オブジェクトの中にアーカイブされるオブジェクトをデコードして返します。
Availability 有効性
Technology
+ (id)unarchiveObjectWithData:(NSData
*)data;
data
An NSData
object that contains an archive created using NSArchiver
.
あるNSData
オブジェクト、それはNSArchiver
を使って作成されたアーカイブを含みます。
The object, or object graph, that was archived in data
. Returns nil
if data
cannot be unarchived.
オブジェクト、またはオブジェクトクラス、それはdata
においてアーカイブされたものです。nil
を返します、もしdata
アンアーカイブできないならば。
This method invokes init
and decode
to create a temporary NSUnarchiver
object that decodes the object. If the archived object is the root of a graph of objects, the entire graph is unarchived.
このメソッドは、init
とdecode
を発動して、オブジェクトをデコードする一時NSUnarchiver
オブジェクトを作成します。アーカイブされたオブジェクトがオブジェクトからなるグラフのルートであるならば、そのグラフ全体がアンアーカイブされます。
+ unarchiveObjectWithFile:
path
.
ファイルpath
においてアーカイブされるオブジェクトをデコードして返します。
- encodeRootObject: