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

initWithFileAtPath:

Initializes and returns an NSInputStream object that reads data from the file at a given path. NSInputStreamオブジェクトを初期化して返します、それは与えられたパスでファイルからデータを読み出します。

Declaration 宣言

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

Parameters パラメータ

path

The path to the file. ファイルへのパス。

Return Value 戻り値

An initialized NSInputStream object that reads data from the file at path. 初期化されたNSInputStreamオブジェクト、それはpathでファイルからデータを読み出します。

Discussion 議論

The stream must be opened before it can be used. ストリームは、それが使われる前に開かれなければなりません。

See Also 参照

Creating Streams ストリームを作成する