mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-05-02 17:34:17 +00:00
9 lines
No EOL
322 B
Objective-C
9 lines
No EOL
322 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface YTAppSettingsStore : NSObject
|
|
+ (NSUInteger)valueTypeForSetting:(int)setting;
|
|
- (void)setValue:(NSNumber *)value forSetting:(int)setting;
|
|
- (void)setBool:(BOOL)value forSetting:(int)setting;
|
|
- (NSNumber *)valueForSetting:(int)setting;
|
|
- (BOOL)boolForSetting:(int)setting;
|
|
@end |