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

initWithURL:append:

Returns an initialized output stream for writing to a specified URL. 指定されたURLへと書き込むために初期化された出力ストリームを返します。

Declaration 宣言

- (instancetype)initWithURL:(NSURL *)url 
                     append:(BOOL)shouldAppend;

Parameters パラメータ

url

The URL to the file the output stream will write to. 出力ストリームが書き込むファイルへのURL。

shouldAppend

YES if newly written data should be appended to any existing file contents, otherwise NO. YES、もし新しく書き込まれたデータがなんらかの既存のファイル内容に追加されるべきならば、そうでなければNO

Return Value 戻り値

An initialized output stream that can write to url. ある初期化された出力ストリーム、それはurlへと書き込み可能なものです。

Discussion 議論

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

See Also 参照

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