15 lines
322 B
Objective-C
15 lines
322 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface TDKeychainItemWrapper : NSObject
|
|
|
|
- (void)saveDeviceId:(NSString *)string;
|
|
- (void)saveInstallTimes:(NSString *)string;
|
|
- (void)readOldKeychain;
|
|
|
|
- (NSString *)readDeviceId;
|
|
- (NSString *)readInstallTimes;
|
|
- (NSString *)getInstallTimesOld;
|
|
- (NSString *)getDeviceIdOld;
|
|
|
|
@end
|