- appendData:
Appends the content of another data object to the receiver.
別のデータオブジェクトの内容をレシーバに加えます。
- increaseLengthBy:
Increases the length of the receiver by a given number of bytes.
レシーバの長さをある与えられたバイト数によって漸増します。
Availability 有効性
Technology
- (void)appendBytes:(const void *)bytes
length:(NSUInteger
)length;
bytes
A buffer containing data to append to the receiver's content. レシーバの内容に加えることになるデータを含んでいるバッファ。
length
The number of bytes from bytes
to append.
bytes
から加えることになるバイト数。
A sample using this method can be found in Working With Mutable Binary Data. このメソッドを使う見本は、Working With Mutable Binary Dataで見つかります。
- appendData:
- increaseLengthBy: