DITMutableRegister
@interface DITMutableRegister : DITRegister
Represents a mutable CRDT register that can be updated while updating a document.
This class can’t be instantiated directly. It’s returned automatically for any register property within an update block.
See also the register property of DITMutableDocumentPath.
-
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype)init NS_UNAVAILABLE; -
Set the register’s value to a new value.
Declaration
Objective-C
- (void)setValue:(nonnull id)value;Parameters
valuethe new value for the register.
DITMutableRegister Class Reference