Contents

NSMutableData

An object representing a dynamic byte buffer in memory.

Declaration

class NSMutableData

Overview

In Swift, this object bridges to Data; use NSMutableData when you need reference semantics or other Foundation-specific behavior.

NSMutableData and its superclass NSData provide data objects, or object-oriented wrappers for byte buffers. Data objects let simple allocated buffers (that is, data with no embedded pointers) take on the behavior of Foundation objects. They are typically used for data storage and are also useful in Distributed Objects applications, where data contained in data objects can be copied or moved between applications. NSData creates static data objects, and NSMutableData creates dynamic data objects. You can easily convert one type of data object to the other with the initializer that takes an NSData object or an NSMutableData object as an argument.

The following NSData methods change when used on a mutable data object:

When called, the bytes are immediately copied and then the buffer is freed.

NSMutableData is “toll-free bridged” with its Core Foundation counterpart, CFData. See Toll-Free Bridging for more information on toll-free bridging.

Topics

Creating Mutable Data

Accessing Raw Bytes

Counting Bytes

Adding Bytes

Modifying Bytes

Compressing and Decompressing Data