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
可変データを作成する
+ dataWithCapacity:
Creates and returns a mutable data object capable of holding the specified number of bytes.
指定されたバイト数を保持する能力のある可変データオブジェクトを返します。
- initWithCapacity:
Returns an initialized mutable data object capable of holding the specified number of bytes.
指定されたバイト数を保持する能力のある初期化された可変データオブジェクトを返します。
- initWithLength:
Initializes and returns a mutable data object containing a given number of zeroed bytes.
与えられた数のゼロ化されたバイトを含んでいる可変データオブジェクトを初期化して返します。