1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| @interface NSObject (Coding)
typedef void (^_Nullable EnumerateBaseDataModelProperties)(Class _Nonnull attribute_class, Class _Nullable model_class, id _Nonnull key, id _Nullable value);
- (void)coding_encode:(NSCoder *_Nonnull)aCoder; - (nullable instancetype)coding_secureDecode:(NSCoder *_Nonnull)aDecoder;
@end
#define CodingImplmentation \ + (BOOL)supportsSecureCoding { \ return YES; \ } \ \ - (void)encodeWithCoder:(NSCoder *_Nonnull)aCoder { \ [self coding_encode:aCoder]; \ } \ \ - (nullable instancetype)initWithCoder:(NSCoder *_Nonnull)aDecoder { \ if (self == [super init]) { \ [self coding_secureDecode:aDecoder]; \ } \ return self; \ } \
|