From 1ac0909c7fc8492c120953dbf510394cd0184cac Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Wed, 27 May 2020 09:47:56 +0800 Subject: [PATCH] 3.8.4 --- frameworks/WASdkIntf.framework/Headers/WAUserProxy.h | 66 +++++++++++++++++++++++++++++++++ 1 files changed, 66 insertions(+), 0 deletions(-) diff --git a/frameworks/WASdkIntf.framework/Headers/WAUserProxy.h b/frameworks/WASdkIntf.framework/Headers/WAUserProxy.h index 6b5269d..3b6c9f8 100644 --- a/frameworks/WASdkIntf.framework/Headers/WAUserProxy.h +++ b/frameworks/WASdkIntf.framework/Headers/WAUserProxy.h @@ -13,6 +13,7 @@ #import "WAAccount.h" #import "WAUserCenterResult.h" #import "WAAppUser.h" +#import "WACertificationInfo.h" /*! @discussion 登录协议 - - - @@ -92,6 +93,9 @@ -(void)loginViewDidCancel:(WALoginResult*)result; @end + + + /*! @discussion 账号管理界面协议 - - - @@ -109,6 +113,20 @@ @param result 切换账户的账户信息 */ -(void)switchAcctDidCompleteWithResult:(WALoginResult*)result; + +/*! +@abstract 绑定账号回调接口 +@param bindResult 绑定账号信息 +*/ +-(void)bindAccountDidCompleteWithResult:(WABindingResult*)bindResult; + + +/*! +@abstract 实名认证成功回调接口 +@param certificationInfo 实名认证信息 +*/ +-(void)realNameAuthtDidCompleteWithResult:(WACertificationInfo*)certificationInfo; + @end /*! @@ -226,6 +244,17 @@ */ +(void)openAccountManager:(id<WAAcctManagerDelegate>)delegate; + +/*! +@abstract 调用此方法打开账户管理界面 +@param delegate 委托 +*/ ++(void)openAccountCenter:(id<WAAcctManagerDelegate>)delegate; + + + + ++(BOOL)isBoundPlatformAccount; /*! @abstract 获取账户信息 @param platform 平台 @@ -295,4 +324,41 @@ @discussion (tip:CP无需关注)获取用户模块组件 */ +(NSArray*)getUserComponents; + ++(void)queryUserCertificationInfo:(void(^)(WACertificationInfo *certificationInfo,NSError *error))callBackBlock; + + +/*! + @discussion 检测是否可以打开账号绑定、账号切换、实名认证接口 + */ ++ (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 API_AVAILABLE(ios(10.3), macos(10.14)); + + + @end -- Gitblit v1.8.0