You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
350 B
13 lines
350 B
@interface USRVJsonStorage : NSObject |
|
|
|
@property (nonatomic, strong) NSMutableDictionary *storageContents; |
|
|
|
- (BOOL)set:(NSString *)key value:(id)value; |
|
- (id)getValueForKey:(NSString *)key; |
|
- (BOOL)deleteKey:(NSString *)key; |
|
- (NSArray *)getKeys:(NSString *)key recursive:(BOOL)recursive; |
|
- (void)clearData; |
|
- (BOOL)initData; |
|
- (BOOL)hasData; |
|
|
|
@end
|
|
|