Instance Property インスタンスプロパティ

bytes

A pointer to the data object's contents. データオブジェクトの内容に対するポインタ。

Declaration 宣言

var bytes: UnsafeRawPointer { get }

Discussion 議論

If the length of the NSData object is 0, this property returns nil. NSDataオブジェクトのlengthがゼロならば、このプロパティはnilを返します。

For an immutable data object, the returned pointer is valid until the data object is deallocated. For a mutable data object, the returned pointer is valid until the data object is deallocated or the data is mutated. 不変のデータオブジェクトに対して、返されるポインタはデータオブジェクトがデアロケートされるまで有効です。可変のデータオブジェクトに対して、返されるポインタはデータオブジェクトがデアロケートされるまたはデータが変化させられるまで有効です。

See Also 参照

Accessing Underlying Bytes 基礎をなすバイトにアクセスする

Related Documentation 関連文書