Type Method 型メソッド

dataWithLength:

Creates and returns an mutable data object containing a given number of zeroed bytes. 与えられた数のゼロ化されたバイトを含んでいる可変データオブジェクトを作成して返します。

Declaration 宣言

+ (instancetype)dataWithLength:(NSUInteger)length;

Parameters パラメータ

length

The number of bytes the new data object initially contains. 新しいデータオブジェクトが最初から含むバイト数。

Return Value 戻り値

A new NSMutableData object of length bytes, filled with zeros. ある新しいNSMutableDataオブジェクト、それはlengthバイトです、ゼロで満たされます。

The returned object has the same memory alignment guarantees as malloc(_:). 返されるオブジェクトは、malloc(_:)と同じメモリアライメントを保証されます。

See Also 参照

Creating Mutable Data 可変データを作成する