CBLMutableDictionary
@interface CBLMutableDictionary : CBLDictionary <CBLMutableDictionary>
CBLMutableDictionary is a mutable version of the CBLDictionary.
-
Creates a new empty CBLMutableDictionary object.
Declaration
Objective-C
+ (nonnull instancetype)dictionary; -
Initialize a new empty CBLMutableDictionary object.
Declaration
Objective-C
- (nonnull instancetype)init; -
Initialzes a new CBLMutableDictionary object with dictionary 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)initWithDictionary: (nonnull NSDictionary<NSString *, id> *)dictionary;Parameters
dictionaryThe dictionary object.
CBLMutableDictionary Class Reference