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

write:maxLength:

Writes the contents of a provided data buffer to the receiver. 提供されたデータバッファの内容をレシーバに書き込みます。

Declaration 宣言

- (NSInteger)write:(const uint8_t *)buffer 
         maxLength:(NSUInteger)len;

Parameters パラメータ

buffer

The data to write. 書き出すことになるデータ。

length

The length of the data buffer, in bytes. データバッファの長さ、バイト数で。

Return Value 戻り値

A number indicating the outcome of the operation: 操作の結果を指し示している数:

  • A positive number indicates the number of bytes written. 正の数は、書き込まれたバイトの数を指し示します。

  • 0 indicates that a fixed-length stream and has reached its capacity. 0は、固定長ストリームそしてそれの容量に達したことを指し示します。

  • -1 means that the operation failed; more information about the error can be obtained with streamError. -1は、操作が失敗したことを意味します;エラーについてのさらなる情報はstreamErrorで入手できます。

See Also 参照

Using Streams ストリームを使う