class func unarchiveObject (with: Data) -> Any?
Decodes and returns the object archived in a given
NSData
object.
与えられたNSData
オブジェクトの中にアーカイブされるオブジェクトをデコードして返します。
path
.
ファイルpath
においてアーカイブされるオブジェクトをデコードして返します。
Availability 有効性
Technology
class func unarchiveObject(withFile path: String
) -> Any?
path
The path to a file than contains an archive created using NSArchiver
.
あるファイルへのパス、それはNSArchiver
を使って作成されるアーカイブを含みます。
The object, or object graph, that was archived in the file at path
. Returns nil
if the file at path
cannot be unarchived.
オブジェクト、またはオブジェクトクラス、それはpath
でのファイルにおいてアーカイブされたものです。nil
を返します、もしpath
でのファイルがアンアーカイブできないならば。
This convenience method reads the file by invoking the NSData
method data
and then invokes unarchive
.
この便宜メソッドは、NSData
のメソッドdata
を呼び出して次にunarchive
を発動することによってファイルを読み出します。
class func unarchiveObject (with: Data) -> Any?
NSData
object.
与えられたNSData
オブジェクトの中にアーカイブされるオブジェクトをデコードして返します。