CBLMutableArray
@interface CBLMutableArray : CBLArray <CBLMutableArray>
CBLMutableArray provides access to array data.
-
Creates a new empty CBLMutableArray object.
Declaration
Objective-C
+ (nonnull instancetype)array; -
Initialize a new empty CBLMutableArray object.
Declaration
Objective-C
- (nonnull instancetype)init; -
Initialize a new CBLMutableArray object with an array content. Allowed value types are NSArray, NSDate, NSDictionary, NSNumber, NSNull, NSString, CBLMutableArray, CBLBlob, CBLMutableDictionary. The NSArrays and NSDictionaries must contain only the above types.
Declaration
Objective-C
- (nonnull instancetype)initWithArray:(nonnull NSArray *)array;Parameters
arrayThe array object.
CBLMutableArray Class Reference