Type Method 型メソッド

writeJSONObject:toStream:options:error:

Writes a given JSON object to a stream. 与えられたJSONオブジェクトをストリームに書き込みます。

Declaration 宣言

+ (NSInteger)writeJSONObject:(id)obj 
                    toStream:(NSOutputStream *)stream 
                     options:(NSJSONWritingOptions)opt 
                       error:(NSError * _Nullable *)error;

Parameters パラメータ

obj

The object to write to stream. streamに書き込むことになるオブジェクト。

stream

The stream to which to write. それに対して書き込むことになるストリーム。

The stream should be open and configured. ストリームは、開かれて構成設定されるべきです。

opt

Options for writing the JSON data. JSONデータを書き込むためのオプション。

See NSJSONWritingOptions for possible values. 可能な値のためにNSJSONWritingOptionsを見てください。

error

If an error occurs, upon return contains an NSError object with code NSPropertyListWriteInvalidError that describes the problem. エラーが発生するならば、戻りでは、NSErrorオブジェクトを含みます、問題を記述するNSPropertyListWriteInvalidErrorとともに。

Return Value 戻り値

The number of bytes written to the stream, or 0 if an error occurs. ストリームに書き込まれたバイト数、またはエラーが発生するならば0

See Also 参照

Creating JSON Data JSONデータを作成する