Type Method 型メソッド

unarchiveObject(withFile:)

Decodes and returns the object archived in the file path. ファイルpathにおいてアーカイブされるオブジェクトをデコードして返します。

Declaration 宣言

class func unarchiveObject(withFile path: String) -> Any?

Parameters パラメータ

path

The path to a file than contains an archive created using NSArchiver. あるファイルへのパス、それはNSArchiverを使って作成されるアーカイブを含みます。

Return Value 戻り値

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でのファイルがアンアーカイブできないならば。

Discussion 議論

This convenience method reads the file by invoking the NSData method dataWithContentsOfFile: and then invokes unarchiveObject(with:). この便宜メソッドは、NSDataのメソッドdataWithContentsOfFile:を呼び出して次にunarchiveObject(with:)を発動することによってファイルを読み出します。

See Also 参照

Decoding objects オブジェクトをデコードする