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

appendBytes:length:

Appends to the receiver a given number of bytes from a given buffer. レシーバにある与えられた数のバイトをある与えられたバッファから加えます。

Declaration 宣言

- (void)appendBytes:(const void *)bytes 
             length:(NSUInteger)length;

Parameters パラメータ

bytes

A buffer containing data to append to the receiver's content. レシーバの内容に加えることになるデータを含んでいるバッファ。

length

The number of bytes from bytes to append. bytesから加えることになるバイト数。

Discussion 議論

A sample using this method can be found in Working With Mutable Binary Data. このメソッドを使う見本は、Working With Mutable Binary Dataで見つかります。

See Also 参照

Adding Bytes バイトを加える