class func unarchiveObject (withFile : String) -> Any?
Decodes and returns the object archived in the file
path
.
ファイルpath
においてアーカイブされるオブジェクトをデコードして返します。
NSData
object.
与えられたNSData
オブジェクトの中にアーカイブされるオブジェクトをデコードして返します。
Availability 有効性
Technology
class func unarchiveObject(with data: Data
) -> Any?
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(for
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(for
とdecode
を発動して、オブジェクトをデコードする一時NSUnarchiver
オブジェクトを作成します。アーカイブされたオブジェクトがオブジェクトからなるグラフのルートであるならば、そのグラフ全体がアンアーカイブされます。
class func unarchiveObject (withFile : String) -> Any?
path
.
ファイルpath
においてアーカイブされるオブジェクトをデコードして返します。
func encodeRootObject (Any)