单军华
2016-12-09 1a11fb042ac01b8c045d48e6ee3abbf153bf1c36
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "JKVValueImpl.h"
 
/*! JKVMutableValue represents an Immutable Value Object class that should be subclassed to use.
 *
 *  JKVMutableValue subclasses will introspect all its properties for various NSObject features.
 *  The following interfaces are supported when inheriting from JKVValue:
 *
 *  - NSSecureCoding (thus, NSCoding)
 *  - NSMutableCopying
 *  - NSCopying
 *
 * JKVMutableValue assumes mutability. Using -[copy] should return an immutable variant.
 * if available.
 *
 *  If you want a immutable variant, inherit from JKVValue.
 */
@interface JKVMutableValue : JKVValue
 
@end