16 lines
253 B
Objective-C
16 lines
253 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YTLUserDefaults : NSUserDefaults
|
|
|
|
@property (class, readonly, strong) YTLUserDefaults *standardUserDefaults;
|
|
|
|
- (void)reset;
|
|
|
|
+ (void)resetUserDefaults;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|