lipengwei
2020-05-06 d560f4df74bc74b2e5c269173f4c9572bb28cabc
2.1.0
8 files modified
1 files added
94 ■■■■■ changed files
WASdkIntf_CN.podspec 2 ●●● patch | view | raw | blame | history
WASdkIntf_CN/2.1.0/WASdkIntf_CN.podspec 23 ●●●●● patch | view | raw | blame | history
frameworks/WASdkIntf.framework/Headers/WAConstants.h 1 ●●●● patch | view | raw | blame | history
frameworks/WASdkIntf.framework/Headers/WACscProxy.h 2 ●●● patch | view | raw | blame | history
frameworks/WASdkIntf.framework/Headers/WAICsc.h 3 ●●●●● patch | view | raw | blame | history
frameworks/WASdkIntf.framework/Headers/WAIUser.h 27 ●●●●● patch | view | raw | blame | history
frameworks/WASdkIntf.framework/Headers/WASdkIntf.h 2 ●●● patch | view | raw | blame | history
frameworks/WASdkIntf.framework/Headers/WAUserProxy.h 34 ●●●●● patch | view | raw | blame | history
frameworks/WASdkIntf.framework/WASdkIntf patch | view | raw | blame | history
WASdkIntf_CN.podspec
@@ -9,7 +9,7 @@
Pod::Spec.new do |s|
s.name = 'WASdkIntf_CN'
s.version = '2.0.0'
s.version = '2.1.0'
s.summary = 'WASdkIntf_CN framework in testing environment.'
s.license = 'MIT'
s.author = { "Hank" => "hank.zhang@gamehollywood.com" }
WASdkIntf_CN/2.1.0/WASdkIntf_CN.podspec
New file
@@ -0,0 +1,23 @@
#
#  Be sure to run `pod spec lint WASdkIntf.podspec' to ensure this is a
#  valid spec and to remove all comments including this before submitting the spec.
#
#  To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
#  To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = 'WASdkIntf_CN'
s.version = '2.1.0'
s.summary = 'WASdkIntf_CN framework in testing environment.'
s.license = 'MIT'
s.author = { "Hank" => "hank.zhang@gamehollywood.com" }
s.homepage = 'http://repo.wingsdk.cn:8082/summary/WASdkIntf_CN.git'
s.source = { :git => "http://admin@repo.wingsdk.cn:8082/r/WASdkIntf_CN.git" , :tag => s.version}
s.platform = :ios
s.ios.deployment_target = "7.0"
s.vendored_frameworks = 'frameworks/WASdkIntf.framework'
s.resources = ['config/*.plist']
s.requires_arc = true
end
frameworks/WASdkIntf.framework/Headers/WAConstants.h
@@ -41,6 +41,7 @@
extern NSString *const WA_PLATFORM_SIGNINWITHAPPLE_CN_NAME;
extern NSString *const WA_PLATFORM_WECHAT_CN_NAME;
extern NSString *const WA_PLATFORM_WINGA_CN_NAME;
extern NSString *const WA_CONSTANT_GUEST_CN_NAME;
frameworks/WASdkIntf.framework/Headers/WACscProxy.h
@@ -82,9 +82,9 @@
*/
+ (BOOL) isOpenAiHelp;
+ (void) openAiHelp:(NSString * _Nonnull )language;
+ (void) openAiHelp:(NSString * _Nonnull )language isVip:(BOOL)vip;
@end
frameworks/WASdkIntf.framework/Headers/WAICsc.h
@@ -54,5 +54,8 @@
- (void) openAiHelp:(NSString * _Nonnull )language;
#pragma mark -- 打开aihelp 扩展是否为vip
- (void) openAiHelp:(NSString * _Nonnull )language isVip:(BOOL)vip;
@end
frameworks/WASdkIntf.framework/Headers/WAIUser.h
@@ -61,4 +61,31 @@
//查询是否已绑定第三方账号 (国内)
-(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;
@end
frameworks/WASdkIntf.framework/Headers/WASdkIntf.h
@@ -68,4 +68,4 @@
// In this header, you should import all the public headers of your framework using statements like #import <WASdkIntf/PublicHeader.h>
//time:2020/04/05 09:15 ver:2.0.0
//time:2020/05/05 09:15 ver:2.1.0
frameworks/WASdkIntf.framework/Headers/WAUserProxy.h
@@ -119,6 +119,14 @@
@param bindResult 绑定账号信息
*/
-(void)bindAccountDidCompleteWithResult:(WABindingResult*)bindResult;
/*!
@abstract 实名认证成功回调接口
@param certificationInfo 实名认证信息
*/
-(void)realNameAuthtDidCompleteWithResult:(WACertificationInfo*)certificationInfo;
@end
/*!
@@ -319,4 +327,30 @@
+(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;
@end
frameworks/WASdkIntf.framework/WASdkIntf
Binary files differ