init?(capacity: Int)
Returns an initialized mutable data object capable of holding the specified number of bytes.
指定されたバイト数を保持する能力のある初期化された可変データオブジェクトを返します。
Availability 有効性
Technology
init?(length: Int
)
length
The number of bytes the object initially contains. オブジェクトが初めに含むバイトの数。
An initialized NSMutable
object containing length
zeroed bytes.
初期化されたNSMutable
オブジェクト、length
のゼロ化バイトを含んでいます。
The returned object has the same memory alignment guarantees as malloc(_:)
.
返されるオブジェクトは、malloc(_:)
と同じメモリアライメントを保証されます。
init?(capacity: Int)
+ dataWithCapacity:
+ dataWithLength: