Instance Method インスタンスメソッド

initWithBytes:length:

Initializes a data object filled with a given number of bytes copied from a given buffer. 与えられたバッファから複製される、与えられた数のバイトで満たされたデータオブジェクトを初期化します。

Declaration 宣言

- (instancetype)initWithBytes:(const void *)bytes 
                       length:(NSUInteger)length;

Discussion 議論

A data object initialized by adding to it length bytes of data copied from the buffer bytes. The returned object might be different than the original receiver. それにlengthバイトのコピーされるデータをバッファbytesから追加することによって初期化されるデータオブジェクト。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。

See Also 参照

Creating Data データを作成する