init(bytes: UnsafeRawPointer?, length: Int)
init(bytesNoCopy : UnsafeMutableRawPointer, length: Int)
init(bytesNoCopy : UnsafeMutableRawPointer, length: Int, freeWhenDone : Bool)
init(data: Data)
Availability 有効性
Technology
init(bytesNoCopy bytes: UnsafeMutableRawPointer
,
length: Int
,
deallocator: ((UnsafeMutableRawPointer
, Int
) -> Void
)? = nil)
bytes
A buffer containing data for the new object. 新しいオブジェクトに対するデータを含んでいるバッファ。
length
The number of bytes to hold from bytes
. This value must not exceed the length of bytes
.
bytes
から保持することになるバイト数。この値は、bytes
の長さを越えてはなりません。
deallocator
A block to invoke when the resulting NSData
object is deallocated.
結果のNSData
オブジェクトがデアロケートされる時に発動するブロック。
A data object initialized by adding to it length
bytes of data from the buffer bytes
. The returned object might be different than the original receiver.
それにlength
バイトのデータをバッファbytes
から追加することによって初期化されるデータオブジェクト。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。
Use this method to define your own deallocation behavior for the data buffer you provide. このメソッドを使ってあなた独自のデアロケーション挙動をあなたが提供するデータバッファに対して定義してください。
In order to avoid any inadvertent strong reference cycles, you should avoid capturing pointers to any objects that may in turn maintain strong references to the NSData
object. This includes explicit references to self
, and implicit references to self
due to direct instance variable access. To make it easier to avoid these references, the deallocator
block takes two parameters, a pointer to the buffer
, and its length; you should always use these values instead of trying to use references from outside the block.
何らかの不注意による強い参照循環を防ぐために、あなたは逆にNSData
オブジェクトへの強い参照を保守するかもしれない何らかのオブジェクトへのポインタをキャプチャすることを避けるべきです。これは、self
への明示的な参照、そして直接のインスタンス変数アクセスが原因での暗黙的なself
への参照を含みます。それらの参照を防止するのをより簡単にするために、deallocator
は2つのパラメータを取ります、buffer
へのポインタ、そしてそれの長さ;あなた常にそれらの値を、ブロックの外側からの参照を使おうと試みる代わりに使用すべきです。
init(bytes: UnsafeRawPointer?, length: Int)
init(bytesNoCopy : UnsafeMutableRawPointer, length: Int)
init(bytesNoCopy : UnsafeMutableRawPointer, length: Int, freeWhenDone : Bool)
init(data: Data)