feat(*): update binary

2.1.2
xiaoyi 2021-05-14 19:40:33 +08:00
parent 56dcf25c81
commit 1a8bacfc0d
4 changed files with 4 additions and 5 deletions

View File

@ -15,8 +15,8 @@
#import <TapCommonSDK/TapCommonSDK.h>
#define TapSDK @"TapSDK"
#define TapSDK_VERSION_NUMBER @"20101001"
#define TapSDK_VERSION @"2.1.1"
#define TapSDK_VERSION_NUMBER @"20102001"
#define TapSDK_VERSION @"2.1.2"
NS_ASSUME_NONNULL_BEGIN
@ -72,9 +72,6 @@ typedef void (^TapUserDetailsHandler)(TapUserDetails *_Nullable userDetail, NSEr
/// 退出登录
+ (void)logout;
/// 打开用户中心
+ (void)openUserCenter;
/// 获取用户是否有测试资格
/// @param handler 回调
+ (void)getTestQualification:(void (^)(BOOL isQualified, NSError *_Nullable error))handler;

View File

@ -17,6 +17,8 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, assign) BOOL isGuest;
@property (nonatomic, assign) long gender;
- (instancetype)initWithJsonString:(NSString *)json;
- (NSString *)toJsonString;
@end