Type Method 型メソッド

unarchiveObject(withFile:)

Decodes and returns the object graph previously encoded by NSKeyedArchiver written to the file at a given path. 以前にNSKeyedArchiverによってエンコードされてある与えられたパスでファイルに書き出されたオブジェクトグラフをデコードして返します。

Declaration 宣言

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

Parameters パラメータ

path

A path to a file that contains an object graph previously encoded by NSKeyedArchiver. 以前にNSKeyedArchiverによってエンコードされたオブジェクトグラフを含むファイルへのパス。

Return Value 戻り値

The object graph previously encoded by NSKeyedArchiver written to the file path. Returns nil if there is no file at path. 以前にNSKeyedArchiverによってエンコードされてファイルpathに書き出されたオブジェクトグラフ。nilを返します、もしpathでのファイルがないならば。

Discussion 議論

This method raises an invalidArgumentException if the file at path does not contain a valid archive. このメソッドはinvalidArgumentExceptionを引き起こします、もしpathが有効なアーカイブを含まないならば。

See Also 参照

Unarchiving Data データをアンアーカイブする