123456789101112 |
- @interface UADSMetaData : NSObject
- @property (nonatomic, strong) NSString *category;
- @property (nonatomic, strong) NSMutableDictionary *entries;
- - (instancetype)initWithCategory:(NSString *)category;
- - (void)set:(NSString *)key value:(id)value;
- - (void)commit;
- @end
|