From e198923baf7b4052babfe7b8ac673f38b8f750e7 Mon Sep 17 00:00:00 2001 From: lpw <pengwei.li@gamehollywood.com> Date: Tue, 12 Jan 2021 09:36:06 +0800 Subject: [PATCH] 3.9.1 --- frameworks/WASdkIntf.framework/Headers/WAIUser.h | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/frameworks/WASdkIntf.framework/Headers/WAIUser.h b/frameworks/WASdkIntf.framework/Headers/WAIUser.h index 5854d76..5e909e5 100644 --- a/frameworks/WASdkIntf.framework/Headers/WAIUser.h +++ b/frameworks/WASdkIntf.framework/Headers/WAIUser.h @@ -39,6 +39,10 @@ sourceApplication:(NSString *)sourceApplication annotation:(id)annotation; +- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options; + +- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url; + -(void)loginWithResult:(WALoginResult*)result delegate:(id<WALoginDelegate>)delegate; -(void)loginWithResult:(WALoginResult*)result extInfo:(NSString*)extInfo delegate:(id<WALoginDelegate>)delegate; @@ -47,4 +51,46 @@ -(WALoginResult*)getCurrentLoginResult; -(void)didUserLogin:(void(^)(NSError* error,BOOL didLogin))block; + +- (void)getUserCenterNotice:(id<WAUserCenterNoticeDelegate>)delegate; + +- (void)showUserCenterNoticeUI:(id<WAUserCenterNoticeUIDelegate>)delegate; + +-(void)queryUserCertificationInfo:(void(^)(WACertificationInfo *certificationInfo,NSError *error))callBackBlock; + +//查询是否已绑定第三方账号 (国内) +-(BOOL)isBoundPlatformAccount; + +/*! + @discussion 检测是否可以打开账号绑定、账号切换、实名认证接口 + 如果返回NO,没有登录 canOpenRealNameAuth 已经实名 + */ +- (BOOL)canOpenAccoutbind; +- (BOOL)canOpenAccoutSwitch; +- (BOOL)canOpenRealNameAuth; + +/*! +@discussion 打开账户绑定界面 +*/ +- (void)openAccoutbindManager:(void(^)(NSError* error,WABindingResult * bindResult))block; + + +/*! +@discussion 打开账户切换界面 +*/ +- (void)openAccoutSwithchManager:(void(^)(NSError* error,WALoginResult * loginResult))block; + + +/*! +@discussion 打开实名认证界面 +*/ +- (void)openRealNameAuthManager:(void(^)(NSError* error,WACertificationInfo * certificationInfo))block; + + + +/*! +@discussion 打开as评分弹框 +*/ +- (void)openReview; + @end -- Gitblit v1.8.0