From 69a363e186880eed749d0372b57a0b442710048f Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Tue, 07 Jul 2020 08:42:26 +0800 Subject: [PATCH] 2.1.1 --- frameworks/WASdkIntf.framework/Headers/WAIUser.h | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/frameworks/WASdkIntf.framework/Headers/WAIUser.h b/frameworks/WASdkIntf.framework/Headers/WAIUser.h index 839d6e7..5e909e5 100644 --- a/frameworks/WASdkIntf.framework/Headers/WAIUser.h +++ b/frameworks/WASdkIntf.framework/Headers/WAIUser.h @@ -57,4 +57,40 @@ - (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