Instance Method インスタンスメソッド

initWithContentsOfFile:

Initializes a data object with the content of the file at a given path. あるデータオブジェクトをある与えられたパスでのファイルの内容で初期化します。

Declaration 宣言

- (instancetype)initWithContentsOfFile:(NSString *)path;

Parameters パラメータ

path

The absolute path of the file from which to read data. それからデータ読み出すことになるファイルの絶対パス。

Return Value 戻り値

A data object initialized by reading into it the data from the file specified by path. pathによって指定されるファイルからのデータをそれへと読み出すことによって初期化されるデータオブジェクト。

Discussion 議論

This method is equivalent to initWithContentsOfFile:options:error: with no options. このメソッドは、オプション無しでのinitWithContentsOfFile:options:error:と等しいです。

See Also 参照

Reading Data from a File ファイルからデータを読み出す