- appendBytes:length:
Appends to the receiver a given number of bytes from a given buffer.
レシーバにある与えられた数のバイトをある与えられたバッファから加えます。
- appendData:
Appends the content of another data object to the receiver.
別のデータオブジェクトの内容をレシーバに加えます。
Availability 有効性
Technology
- (void)increaseLengthBy:(NSUInteger
)extraLength;
extraLength
The number of bytes by which to increase the receiver's length. それによってレシーバのもつ長さを漸増するバイトの数。
The additional bytes are all set to 0
.
追加のバイトは、全て0
に設定されます。
Important 重要
Changing the length of a mutable data object invalidates any existing data pointers returned by the bytes
or mutable
properties.
可変データオブジェクトの長さの変更は、bytes
またはmutable
プロパティによって返されるあらゆる既存のデータポインタを無効にします。
- appendBytes:length:
- appendData:
length