miduo_client/Assets/Plugins/iOS/ThinkingSDK/Source/common/file/TDKeychainItemWrapper.h

15 lines
322 B
C
Raw Normal View History

2021-08-28 20:21:42 +08:00
#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