Instance Method
インスタンスメソッド
initWithLength:
Initializes and returns a mutable data object containing a given number of zeroed bytes.
与えられた数のゼロ化されたバイトを含んでいる可変データオブジェクトを初期化して返します。
Declaration
宣言
- (instancetype)initWithLength:(NSUInteger
)length;
Parameters
パラメータ
length
The number of bytes the object initially contains.
オブジェクトが初めに含むバイトの数。
Return Value
戻り値
An initialized NSMutableData
object containing length
zeroed bytes.
初期化されたNSMutableData
オブジェクト、length
のゼロ化バイトを含んでいます。
The returned object has the same memory alignment guarantees as malloc(_:)
.
返されるオブジェクトは、malloc(_:)
と同じメモリアライメントを保証されます。
See Also
参照
Creating Mutable Data
可変データを作成する
+ dataWithCapacity:
Creates and returns a mutable data object capable of holding the specified number of bytes.
指定されたバイト数を保持する能力のある可変データオブジェクトを返します。
+ dataWithLength:
Creates and returns an mutable data object containing a given number of zeroed bytes.
与えられた数のゼロ化されたバイトを含んでいる可変データオブジェクトを作成して返します。
- initWithCapacity:
Returns an initialized mutable data object capable of holding the specified number of bytes.
指定されたバイト数を保持する能力のある初期化された可変データオブジェクトを返します。