61 files added
15 files modified
| | |
| | | Pod::Spec.new do |s| |
| | | |
| | | s.name = 'WASdkImpl' |
| | | s.version = '3.9.7' |
| | | s.version = '3.10.0' |
| | | s.summary = 'WASdkImpl framework in production environment.' |
| | | s.license = 'MIT' |
| | | s.author = { "Wuyx" => "wuyixin_gh@gamehollywood.com" } |
New file |
| | |
| | | # |
| | | # Be sure to run `pod spec lint WASdkImpl.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 = 'WASdkImpl' |
| | | s.version = '3.10.0' |
| | | s.summary = 'WASdkImpl framework in production environment.' |
| | | s.license = 'MIT' |
| | | s.author = { "Wuyx" => "wuyixin_gh@gamehollywood.com" } |
| | | s.homepage = 'http://repo.wingsdk.cn:8082/summary/WASdkImpl.git' |
| | | s.source = { :git => "http://admin@repo.wingsdk.cn:8082/r/WASdkImpl.git" , :tag => s.version} |
| | | s.platform = :ios |
| | | s.ios.deployment_target = "7.0" |
| | | s.vendored_frameworks = 'frameworks/*.framework' |
| | | s.resources = ['config/*.xml','bundle/WASDK-Resource.bundle','localizable/*.plist'] |
| | | s.libraries = 'sqlite3','z' |
| | | s.requires_arc = true |
| | | s.dependency 'WASdkIntf' |
| | | |
| | | end |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <config> |
| | | <version val="WA3.9.7"/> |
| | | <version val="WA3.10.0"/> |
| | | <comps> |
| | | <!-- 用户模块 --> |
| | | <comp module="USR" plaf="WINGA" mandatory="YES" value="WASdkUser" desc="WINGA用户账户"/> |
| | |
| | | extern NSString *const WASDK_PARAM_KEY_EXT_VERIFYINFO; |
| | | extern NSString *const WASDK_PARAM_KEY_EXTRA_APPLEAUTHORIZATIONCODE; |
| | | |
| | | extern NSString *const WASDK_PARAM_KEY_REALNAME ; |
| | | extern NSString *const WASDK_PARAM_KEY_IDCARD ; |
| | | |
| | | extern NSString *const WASDK_PARAM_KEY_REVOKE_PLATFORM; |
| | | extern NSString *const WASDK_PARAM_KEY_REVOKE_TOKEN; |
| | | |
| | | |
| | | extern NSString *const WASDK_PARAM_KEY_COLLECTION_INFO; |
| | | extern NSString *const WASDK_PARAM_KEY_SDKEXTINFO; |
| | |
| | | //充值中心-短链接申请 |
| | | extern NSString *const WASDK_PAYCENTER_URL_GET_SHORT_LINK; |
| | | |
| | | // 玩家身份确认接口 |
| | | extern NSString *const WASDK_ACCOUNT_DELETE_IDENTITY_CHECK; |
| | | |
| | | // 申请注销账号 |
| | | extern NSString *const WASDK_ACCOUNT_DELETE_DELETE_APPLY; |
| | | |
| | | // 撤销注销账号申请 |
| | | extern NSString *const WASDK_ACCOUNT_DELETE_DELETE_REVOCATION; |
| | | |
| | | extern NSString *const WASDK_FB_INVITE_FROM_USERID; |
| | | extern NSString *const WASDK_FB_INVITE_TO_USERID; |
| | |
| | | |
| | | |
| | | |
| | | |
| | | @interface WACommConstants : NSObject { |
| | | |
| | | } |
| | |
| | | #import <WACommon/WAWebProgressView.h> |
| | | #import <WACommon/WAWebViewController.h> |
| | | |
| | | //time:2021/10/21 09:16 |
| | | //time:2022/06/20 09:16 |
| | | |
| | |
| | | |
| | | // In this header, you should import all the public headers of your framework using statements like #import <WASdkImpl/PublicHeader.h> |
| | | |
| | | //time:2022/01/26 09:17 ver:3.9.7 |
| | | //time:2022/06/20 09:17 ver:2.6.0 |
| | | |
New file |
| | |
| | | // |
| | | // WASDKAccount.h |
| | | // WASDKUI |
| | | // |
| | | // Created by wuyx on 15/11/30. |
| | | // Copyright © 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAAccount 该类为账户类 |
| | | - - - |
| | | */ |
| | | @interface WAAccount : NSObject |
| | | /*! |
| | | @abstract 第三方平台openId |
| | | */ |
| | | @property(nonatomic,copy)NSString* pUserId;//第三方平台openId |
| | | |
| | | /*! |
| | | @abstract 绑定平台标识 FACEBOOK、APPLE、WINGA |
| | | */ |
| | | @property(nonatomic,copy)NSString* platform; |
| | | |
| | | @property (nonatomic, strong) NSString *mobile;//wa平台才有此字段 |
| | | |
| | | |
| | | +(WAAccount*)parserWithDict:(NSDictionary*)dict; |
| | | +(NSArray*)parserWithArray:(NSArray*)arr; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAAdProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by hank on 2017/8/15. |
| | | // Copyright © 2017年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import <UIKit/UIKit.h> |
| | | |
| | | typedef NS_ENUM(NSInteger, WAAdCancelType) { |
| | | WAAdCancelTypePlayBefore = 0, // 播放前取消(播放前提示页面) |
| | | WAAdCancelTypePlaying, // 播放过程中取消 |
| | | WAAdCancelTypePlayAfter, // 播放后取消(下载页面取消) |
| | | }; |
| | | |
| | | /** 广告激励视频代理 */ |
| | | @protocol WAAdRewardedVideoDelegate <NSObject> |
| | | |
| | | /*! |
| | | @abstract 显示视频前页面成功时回调 |
| | | @param campaignId 活动Id |
| | | @param adSetId 广告Id |
| | | @param rewarded 奖励物品 |
| | | @param rewardedCount 奖励物品数量 |
| | | @param extInfo CP扩展字段 |
| | | */ |
| | | - (void) adPreDisplayRewardedVideoWithCampaignId:(NSString *)campaignId |
| | | adSetId:(NSString *)adSetId |
| | | rewarded:(NSString *)rewarded |
| | | rewardedCount:(NSInteger)rewardedCount |
| | | extInfo:(NSString *)extInfo; |
| | | |
| | | /*! |
| | | @abstract 点击叉按钮后回调 |
| | | @param campaignId 活动Id |
| | | @param adSetId 广告Id |
| | | @param process WAAdCancelTypePlayBefore 播放前取消,WAAdCancelTypePlaying 播放过程中取消, WAAdCancelTypeAfter 播放后取消(下载页面取消) |
| | | @param extInfo CP扩展字段 |
| | | */ |
| | | - (void) adDidCancelRewardedVideoWithCampaignId:(NSString *)campaignId |
| | | adSetId:(NSString *)adSetId |
| | | process:(WAAdCancelType)process |
| | | extInfo:(NSString *)extInfo; |
| | | |
| | | /*! |
| | | @abstract 加载视频失败回调 |
| | | @param campaignId 活动Id |
| | | @param adSetId 广告Id |
| | | @param extInfo CP扩展字段 |
| | | */ |
| | | - (void) adDidFailToLoadRewardedVideoWithCampaignId:(NSString *)campaignId |
| | | adSetId:(NSString *)adSetId |
| | | extInfo:(NSString *)extInfo; |
| | | |
| | | /*! |
| | | @abstract 播放视频结束回调 |
| | | @param campaignId 活动Id |
| | | @param adSetId 广告Id |
| | | @param rewarded 奖励物品 |
| | | @param rewardedCount 奖励物品数量 |
| | | @param extInfo CP扩展字段 |
| | | */ |
| | | - (void) adDidDisplayRewardedVideoWithCampaignId:(NSString *)campaignId |
| | | adSetId:(NSString *)adSetId |
| | | rewarded:(NSString *)rewarded |
| | | rewardedCount:(NSInteger)rewardedCount |
| | | extInfo:(NSString *)extInfo; |
| | | |
| | | /*! |
| | | @abstract 播放完视频点击回调 |
| | | @param campaignId 活动Id |
| | | @param adSetId 广告Id |
| | | @param rewarded 奖励物品 |
| | | @param rewardedCount 奖励物品数量 |
| | | @param extInfo CP扩展字段 |
| | | */ |
| | | - (void) adDidClickRewardedVideoWithCampaignId:(NSString *)campaignId |
| | | adSetId:(NSString *)adSetId |
| | | rewarded:(NSString *)rewarded |
| | | rewardedCount:(NSInteger)rewardedCount |
| | | extInfo:(NSString *)extInfo; |
| | | |
| | | @end |
| | | |
| | | /** 视频广告缓存完代理 */ |
| | | @protocol WAAdRewardedVideoCachedDelegate <NSObject> |
| | | |
| | | /*! |
| | | @abstract 视频广告缓存完成回调 |
| | | @param cacheCount 可用广告数量 |
| | | */ |
| | | - (void)adDidRewardedVideoCachedWithCacheCount:(NSInteger)cacheCount; |
| | | |
| | | @end |
| | | |
| | | @interface WAAdProxy : NSObject |
| | | |
| | | /** 加载广告 */ |
| | | + (void)loadAd; |
| | | |
| | | /*! |
| | | @abstract 设置视频广告缓存完回调 |
| | | @param delegate WAAdRewardedVideoCachedDelegate代理 |
| | | */ |
| | | + (void)setWAAdRewardedVideoCachedDelegate:(id<WAAdRewardedVideoCachedDelegate>)delegate; |
| | | |
| | | /*! |
| | | @abstract 检测可播放广告数量 |
| | | */ |
| | | + (NSInteger) checkRewardedVideo; |
| | | |
| | | /*! |
| | | @abstract 显示广告 |
| | | @param extInfo CP扩展字段 |
| | | @param delegate WAAdRewardedVideoDelegate代理 |
| | | */ |
| | | + (void) displayRewardedVideoWithExtInfo:(NSString *)extInfo delegate:(id<WAAdRewardedVideoDelegate>)delegate; |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBAppInviteContent.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAAppInviteContent |
| | | - - - |
| | | */ |
| | | @interface WAAppInviteContent : NSObject |
| | | /*! |
| | | @abstract A URL to a preview image that will be displayed with the app invite |
| | | |
| | | @discussion This is optional. If you don't include it a fallback image will be used. |
| | | */ |
| | | @property (nonatomic, strong) NSURL *appInvitePreviewImageURL; |
| | | |
| | | /*! |
| | | @abstract An app link target that will be used as a target when the user accept the invite. |
| | | |
| | | @discussion This is a requirement. |
| | | */ |
| | | @property (nonatomic, strong) NSURL *appLinkURL; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBAppInviteDialog.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WAAppInviteContent.h" |
| | | @class WAAppInviteDialog; |
| | | /*! |
| | | @discussion 应用邀请协议 |
| | | - - - |
| | | */ |
| | | @protocol WAAppInviteDialogDelegate <NSObject> |
| | | |
| | | /*! |
| | | @abstract Sent to the delegate when the app invite completes without error. |
| | | @param appInviteDialog The WAFBAppInviteDialog that completed. |
| | | @param platform The platform from the app invite . |
| | | @param results The results from the dialog. This may be nil or empty. |
| | | */ |
| | | - (void)appInviteDialog:(WAAppInviteDialog *)appInviteDialog platform:(NSString *const)platform didCompleteWithResults:(NSDictionary *)results; |
| | | |
| | | /*! |
| | | @abstract Sent to the delegate when the app invite encounters an error. |
| | | @param appInviteDialog The WAFBAppInviteDialog that completed. |
| | | @param platform The platform from the app invite . |
| | | @param error The error. |
| | | */ |
| | | - (void)appInviteDialog:(WAAppInviteDialog *)appInviteDialog platform:(NSString *const)platform didFailWithError:(NSError *)error; |
| | | |
| | | @end |
| | | |
| | | /*! |
| | | @discussion WAAppInviteDialog |
| | | - - - |
| | | */ |
| | | @interface WAAppInviteDialog : NSObject |
| | | /*! |
| | | @abstract The receiver's delegate or nil if it doesn't have a delegate. |
| | | */ |
| | | @property (nonatomic, weak) NSObject<WAAppInviteDialogDelegate>* delegate; |
| | | |
| | | /*! |
| | | @abstract The content for app invite. |
| | | */ |
| | | @property (nonatomic, strong) WAAppInviteContent *content; |
| | | @end |
New file |
| | |
| | | // |
| | | // GHWFriend.h |
| | | // GHWSdkUI |
| | | // |
| | | // Created by wuyx on 15/7/1. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | /*! |
| | | @discussion WAFBApplication |
| | | - - - |
| | | */ |
| | | @interface WAAppUser : NSObject<NSCoding,NSCopying> |
| | | /*! |
| | | @abstract ID |
| | | */ |
| | | @property(nonatomic,copy)NSString* ID; |
| | | /*! |
| | | @abstract waUserId |
| | | @discussion 查询游戏内的好友时,waUserId的值是facebook ID对应的ghw UserId.先从facebook查询到好友列表,再用该列表去ghw后台查询对应的waUserId,查询成功则该属性有值,否则为nil.请在使用该属性时做判断 |
| | | */ |
| | | @property(nonatomic,copy)NSString* waUserId; |
| | | /*! |
| | | @abstract name |
| | | */ |
| | | @property(nonatomic,copy)NSString* name; |
| | | /*! |
| | | @abstract pictureURL |
| | | */ |
| | | @property(nonatomic,copy)NSString* pictureURL; |
| | | /*! |
| | | @abstract is_silhouette |
| | | */ |
| | | @property(nonatomic,copy)NSString* is_silhouette; |
| | | /*! |
| | | @abstract inviteTime |
| | | */ |
| | | @property(nonatomic,copy)NSDate* inviteTime; |
| | | +(WAAppUser*)parserWithResultDict:(NSDictionary*)resultDict platform:(NSString *const)platform; |
| | | +(NSArray*)parserWithMultiResultDict:(NSDictionary*)resultDict platform:(NSString *const)platform; |
| | | -(void)encodeWithCoder:(NSCoder *)aCoder; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAApwProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by GHW-T-01 on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAApwProxy |
| | | - - - |
| | | */ |
| | | @interface WAApwProxy : NSObject |
| | | /*! |
| | | @abstract 显示浮动按钮 |
| | | */ |
| | | +(void)showEntryFlowIcon; |
| | | /*! |
| | | @abstract 隐藏浮动按钮 |
| | | */ |
| | | +(void)hideEntryFlowIcon; |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // GHWSDKBindingResult.h |
| | | // GHWSdkUI |
| | | // |
| | | // Created by wuyx on 15/9/22. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WABindingResult 该类为绑定结果 |
| | | - - - |
| | | */ |
| | | @interface WABindingResult : NSObject |
| | | /*! |
| | | @abstract 绑定平台userid |
| | | */ |
| | | @property(copy,nonatomic)NSString *userId; |
| | | /*! |
| | | @abstract 绑定平台(Facebook,Apple) |
| | | */ |
| | | @property(copy,nonatomic)NSString *platform; |
| | | /*! |
| | | @abstract 绑定平台accessToken |
| | | */ |
| | | @property(copy,nonatomic)NSString *accessToken; |
| | | @end |
New file |
| | |
| | | // |
| | | // WACertificationInfo.h |
| | | // WASdkIntf |
| | | // |
| | | // Created by LPW on 2019/12/30. |
| | | // Copyright © 2019 GHW-T-01. All rights reserved. |
| | | // 查询用户实名信息返回model |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @interface WACertificationInfo : NSObject |
| | | /*用户实名认证状态 |
| | | * -1 未开启 |
| | | * 0 已实名 |
| | | * 1 未实名 |
| | | * 2 已实名-未成年() |
| | | * 3 认证中(2.3.0增加) |
| | | |
| | | */ |
| | | @property NSInteger userRealNameStatus; |
| | | |
| | | |
| | | /*用户实名认证状态 |
| | | * -1 未开启实名认证 或者 未实名 |
| | | */ |
| | | @property NSInteger age; |
| | | |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |
New file |
| | |
| | | // |
| | | // WAChannelProduct.h |
| | | // WASdkIntf |
| | | // |
| | | // Created by LPW on 2019/9/17. |
| | | // Copyright © 2019 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @interface WAChannelProduct : NSObject |
| | | @property(nonatomic, strong) NSString *channel; //渠道名称 |
| | | @property(nonatomic, strong) NSString *productIdentifier; //平台商品id |
| | | @property(nonatomic, strong) NSString *localeCurrencyCode; //当前币种code USD 、CNY |
| | | @property(nonatomic, strong) NSString *localFormattedPrice;//格式化价格 $999.99 ¥6,498.00 |
| | | @property(nonatomic, strong) NSDecimalNumber * price ; //价格 999.99 6498 |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |
New file |
| | |
| | | // |
| | | // WAClassGenerator.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/3. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @interface WAClassGenerator : NSObject |
| | | // |
| | | +(NSMutableArray*)generatorAllModule; |
| | | +(NSArray*)getCompsWithModule:(NSString *const)module; |
| | | //根据module生成实例数组 |
| | | +(NSMutableArray*)generatorWithModule:(NSString *const)module; |
| | | //根据module和父类class生成实例数组 |
| | | +(NSMutableArray*)generatorWithModule:(NSString *const)module superClass:(Class)superClass; |
| | | //根据module和platform生成实例并回调 |
| | | +(void)generatorWithModule:(NSString *const)module platform:(NSString *const)platform block:(void (^)(NSObject* obj,NSError* error))block; |
| | | //根据module和platform生成实例 |
| | | +(NSObject*)generatorWithModule:(NSString *const)module platform:(NSString *const)platform; |
| | | //根据module,platform和父类class生成实例 |
| | | +(NSObject*)generatorWithModule:(NSString *const)module platform:(NSString *const)platform superClass:(Class)superClass; |
| | | //判断模块是否存在 |
| | | +(BOOL)isExistWithModule:(NSString*)module; |
| | | //判断某个模块的某个渠道是否存在 |
| | | +(BOOL)isExistWithPlatform:(NSString*)platform module:(NSString*)module; |
| | | @end |
New file |
| | |
| | | // |
| | | // WACode.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/22. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #ifndef WACode_h |
| | | #define WACode_h |
| | | |
| | | typedef enum WACode{ |
| | | WACodeSuccess = 200 ,//成功 |
| | | WACodeError = 400 ,//错误 |
| | | WACodeUnautherized = 401 ,//请求未认证:访问受限资源是缺少认证信息,或者认证未通过 |
| | | WACodeForbiden = 403 ,//禁止访问:由于应用上下文原因或请求端上下文的原因被禁止访问资源,例如IP限制等 |
| | | WACodeNotFound = 404 ,//找不到被访问资源:接口不存在、页面不存在或对应的业务实体找不到 |
| | | WACodeServerError = 500 ,//服务器内部故障 |
| | | WACodeApiInvalid = 501 ,//所请求接口或页面未实现 |
| | | WACodeSdkAppIdInvalid = 4010 ,//无效appId: appId不存在或未开启 |
| | | WACodeSignError = 4011 ,//无效osign:osign校验失败 |
| | | WACodeRequestTimeOut = 4012 ,//请求已过期:ots校验失败 |
| | | WACodePlatformVerifyError = 4013 ,//第三方平台验证失败 |
| | | WACodeAccountVerifyError = 4014 ,//访客登录验证失败,登录验证失败 |
| | | WACodePlatformBoundAlready = 4015 ,//用户已经绑定了这个平台的其他账户 |
| | | WACodePrePlatformVerifyError = 4016 ,//prePlatform验证失败 |
| | | WACodeUserNotFound = 4017 ,//用户不存在(没有找到) |
| | | WACodeAccountBoundByOthers = 4018 ,//账户已经被其他用户绑定 |
| | | WACodeOrderIdInvalid = 4019 ,//无效orderId |
| | | WACodeOrderVerifyError = 4020 ,//订单验证失败 |
| | | WACodeRewardNotFound = 4021 ,//FB邀请奖励事件未找到奖励政策 |
| | | WACodeRepeatCrashReport = 4022 ,//闪退发送报告重复 |
| | | WACodeChannelNotFound = 4023 ,//未找到渠道信息 |
| | | WACodeCanNotUnbind = 4024 ,//不可以进行解绑操作 |
| | | WACodeExchangeRateConversionFailure = 4025 ,//汇率转换失败 |
| | | WACodeAdsClosed = 4044 ,//CP关闭广告开关或未配置广告奖励信息 |
| | | WACodeAdsNotFound = 4045 ,//查找不到广告展示信息 |
| | | WACodeThridPlatformInsufficientBalance = 4046 ,//第三方平台余额不足 |
| | | WACodeThridPlatformAccountExpired = 4047 ,//第三方平台登录过期 |
| | | WACodePayPlatformClosed = 4026 ,//支付渠道已关闭 |
| | | WACodeLoginPlatformClosed = 4029 ,//登录渠道已关闭 |
| | | WACodeBindAccountClosed = 4048 ,//账号绑定关闭 |
| | | WACodeUnBindAccountClosed = 4049 ,//账号解绑关闭 |
| | | WACodeUserCenterClosed = 4059 ,//用户中心未开启 |
| | | WACodeCanNotSwitchToAnonymous = 5001 , |
| | | WACodeFbObjectType = 5002 ,//facebook的objectType不能为空 |
| | | WACodeFbGiftListRequestPrameterLack = 5003 ,//请求gift列表缺少appid,appSecret,objectType参数 |
| | | WACodeFbTokenNull = 5004 ,//facebook token为空 |
| | | WACodeCanNotMakePayment = 5005 ,//该设备不能支付或者不允许支付 |
| | | WACodePaymentError = 5006 ,//支付过程中出错 |
| | | WACodeCancelled = -100 ,//取消操作 |
| | | WACodeSdkUninitialized = -200 ,//SDK没有初始化 |
| | | WACodeContentCanNotBeShared = -201 ,//内容不可分享,一般是传入的内容为空,或者其他 |
| | | WACodeNotLogin = -202 ,//没有登录 |
| | | WACodeLoginFailure = -203 ,//登录失败 |
| | | WACodeNoPermission = -204 ,//登录没有获取到相应的权限 |
| | | WACodeFileSizeLimit = -206 ,//文件大小超出限制 不超过12M |
| | | WACodeCurrentIDNotMatch = -211 ,//当前平台账号跟当前WA UserId绑定的平台账号不一致,或者没有绑定该平台账号 |
| | | WACodeDeviceNotSupported = -401 ,//设备不支持 |
| | | WACodeNetworkUnavailable = -402 ,//网络不可用 |
| | | WACodePayReOrderTimeLimit = -509 //支付流程未完成或者在特定的时间内重复下订单 |
| | | |
| | | }WACode; |
| | | |
| | | #endif /* WACode_h */ |
New file |
| | |
| | | // |
| | | // WAComponent.h |
| | | // test1 |
| | | // |
| | | // Created by wuyx on 16/3/3. |
| | | // Copyright © 2016年 GHW. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAComponent |
| | | - - - |
| | | */ |
| | | @interface WAComponent : NSObject |
| | | @property(nonatomic,copy)NSString* module; |
| | | @property(nonatomic,copy)NSString* plaf; |
| | | @property(nonatomic,copy)NSString* value; |
| | | @property(nonatomic,copy)NSString* desc; |
| | | @end |
New file |
| | |
| | | // |
| | | // GHWConstants.h |
| | | // GHWSdk |
| | | // |
| | | // Created by GHW-T-01 on 15/5/21. |
| | | // Copyright (c) 2015年 Wuyx. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | #ifndef WA_Constants_h |
| | | #define WA_Constants_h |
| | | |
| | | |
| | | extern NSString *const WA_MODULE_USR;//用户模块 |
| | | extern NSString *const WA_MODULE_PAY;//支付模块 |
| | | extern NSString *const WA_MODULE_TRA;//数据收集模块 |
| | | extern NSString *const WA_MODULE_SOC;//社交模块 |
| | | extern NSString *const WA_MODULE_APW;//应用墙模块 |
| | | extern NSString *const WA_MODULE_CORE;//公共模块 |
| | | extern NSString *const WA_MODULE_HUP;//热更新模块 |
| | | extern NSString *const WA_MODULE_PUSH;//消息推送模块 |
| | | extern NSString *const WA_MODULE_AD; //广告模块 |
| | | extern NSString *const WA_MODULE_CSC;//客服系统 |
| | | |
| | | extern NSString *const WA_PLATFORM_FACEBOOK; |
| | | extern NSString *const WA_PLATFORM_APPLE; |
| | | extern NSString *const WA_PLATFORM_APPSFLYER; |
| | | extern NSString *const WA_PLATFORM_CHARTBOOST; |
| | | extern NSString *const WA_PLATFORM_WEBPAY; |
| | | extern NSString *const WA_PLATFORM_WINGA; |
| | | extern NSString *const WA_PLATFORM_BOACOMPRA; |
| | | extern NSString *const WA_PLATFORM_VK; |
| | | extern NSString *const WA_PLATFORM_WECHAT; |
| | | extern NSString *const WA_PLATFORM_QQ; |
| | | extern NSString *const WA_PLATFORM_SIGNINWITHAPPLE; |
| | | extern NSString *const WA_PLATFORM_FIREBASE; |
| | | |
| | | |
| | | |
| | | extern NSString *const WA_PLATFORM_QQ_CN_NAME; |
| | | 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; |
| | | |
| | | |
| | | |
| | | |
| | | extern NSString *const WA_PLATFORM_HUP; |
| | | extern NSString *const WA_PLATFORM_APW; |
| | | extern NSString *const WA_PLATFORM_PUSH; |
| | | extern NSString *const WA_PLATFORM_TWITTER; |
| | | extern NSString *const WA_PLATFORM_INSTAGRAM; |
| | | extern NSString *const WA_PLATFORM_AIHELP; |
| | | |
| | | |
| | | extern NSString *const WA_CONSTANT_GUEST; |
| | | |
| | | |
| | | |
| | | extern NSString *const WA_XML_NODE_CONFIG; |
| | | extern NSString *const WA_XML_NODE_VERSION; |
| | | extern NSString *const WA_XML_NODE_SUPPORTS; |
| | | extern NSString *const WA_XML_NODE_COMP; |
| | | |
| | | extern NSString *const WA_XML_ATTRIBUTE_KEY_VAL; |
| | | extern NSString *const WA_XML_ATTRIBUTE_KEY_MODULE; |
| | | extern NSString *const WA_XML_ATTRIBUTE_KEY_PLAF; |
| | | extern NSString *const WA_XML_ATTRIBUTE_KEY_VALUE; |
| | | extern NSString *const WA_XML_ATTRIBUTE_KEY_DESC; |
| | | |
| | | //登录流程 |
| | | extern const int WA_LOGIN_FLOW_TYPE_DEFAULT; |
| | | extern const int WA_LOGIN_FLOW_TYPE_REBIND; |
| | | |
| | | //facebook permission |
| | | extern NSString *const WA_FB_PERMISSION_PUBLIC_PROFILE; |
| | | extern NSString *const WA_FB_PERMISSION_PUBLISH_ACTIONS; |
| | | extern NSString *const WA_FB_PERMISSION_USER_FRIENDS; |
| | | extern NSString *const WA_FB_PERMISSION_EMAIL; |
| | | |
| | | |
| | | //facebook action type |
| | | extern NSString *const WA_FB_ACTION_TYPE_NONE; |
| | | extern NSString *const WA_FB_ACTION_TYPE_SEND; |
| | | extern NSString *const WA_FB_ACTION_TYPE_ASKFOR; |
| | | extern NSString *const WA_FB_ACTION_TYPE_INVITE; |
| | | |
| | | extern NSString *const WA_REQUEST_TYPE_SEND; |
| | | extern NSString *const WA_REQUEST_TYPE_ASKFOR; |
| | | extern NSString *const WA_REQUEST_TYPE_INVITE; |
| | | extern NSString *const WA_REQUEST_TYPE_REQUEST; |
| | | |
| | | |
| | | extern NSString *const WA_APPLE_IAPResultNotification; |
| | | |
| | | //下面四个通知分别是绑定成功、绑定失败、解绑成功、解绑失败。当绑定有结果之后(无论成功失败),将回传一个WABindingResult实例。当解绑有结果(无论成功失败),将回传一个WAAccount实例。 |
| | | extern NSString *const WABindDidSucceedNotification;//绑定成功 |
| | | extern NSString *const WABindDidFailNotification;//绑定失败 |
| | | extern NSString *const WAUnbindDidSucceedNotification;//解绑成功 |
| | | extern NSString *const WAUnbindDidFailNotification;//解绑失败 |
| | | |
| | | // SDK类型 |
| | | extern const int WA_SDK_TYPE_FR; // 国外 |
| | | extern const int WA_SDK_TYPE_CN; // 国内 |
| | | |
| | | |
| | | // qq登录通知 |
| | | extern NSString *const WAQQLoginSuccessedNSNotification; |
| | | extern NSString *const WAQQkLoginFailedNSNotificationName; |
| | | extern NSString *const WAQQkLoginCancelledNSNotificationName; |
| | | extern NSString *const WAQQkGetUnionIDNSNotificationName; |
| | | extern NSString *const WAQQkLogoutSuccessedNSNotificationName; |
| | | |
| | | |
| | | |
| | | //隐私协议地址 |
| | | extern NSString *const WAPrivacyAgreementURL_UserAgreement; //用户协议 |
| | | extern NSString *const WAPrivacyAgreementURL_PrivacyPolicy; //隐私地址 |
| | | extern NSString *const WAPrivacyAgreementURL_ChildrenPrivacyPolicy; //儿童隐私协议 |
| | | |
| | | |
| | | extern NSString *const deleteAccountProtocolURL_EN; //账号删除协议 |
| | | extern NSString *const deleteAccountProtocolURL_CN; //账号删除协议 |
| | | |
| | | //账号删除有关 |
| | | extern const int WA_ACCOUNT_DELETE_UI_CANCEL; |
| | | extern const int WA_ACCOUNT_DELETE_UI_SUCCESS; |
| | | extern const int WA_ACCOUNT_DELETE_UI_FAILURE; //调用失败,未开启删除权限或者未登录 |
| | | |
| | | |
| | | |
| | | @interface WAConstants : NSObject { |
| | | |
| | | } |
| | | #endif |
| | | @end |
New file |
| | |
| | | // |
| | | // WACore.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import <UIKit/UIKit.h> |
| | | @class WAParamConfigObj; |
| | | @interface WACore : NSObject |
| | | -(void)initialize; |
| | | -(void)initAppEventTracker; |
| | | -(void)setSDKType:(NSInteger)sdkType; |
| | | -(NSInteger)getSDKType; |
| | | -(BOOL)isDebugMode; |
| | | -(void)setDebugMode:(BOOL)isDebugMode; |
| | | -(BOOL)displayLog; |
| | | -(void)setClientId:(NSString*)clientId; |
| | | -(NSString*)getUserId; |
| | | -(void)setServerId:(NSString *)serverId; |
| | | -(NSString*)getGameUserId; |
| | | -(NSString*)getServerId; |
| | | -(void)setLevel:(int)level; |
| | | -(int)getLevel; |
| | | -(void)setGameUserId:(NSString*)gameUserId; |
| | | -(void)setNickName:(NSString*)nikeName; |
| | | -(void)setPuserName:(NSString *)puserName; |
| | | -(void)setUserFlag:(NSString*)userFlag; |
| | | -(NSString*)getPuserName; |
| | | -(NSString*)getNickName; |
| | | -(NSString*)getUserFlag; |
| | | -(void)addLogWithString:(NSString*)string; |
| | | -(void)addLogWithoutBtn:(NSString*)string; |
| | | -(NSString*)getSdkVersion; |
| | | -(NSString*)getWaSdkServerUrl; |
| | | -(NSString*)getAppKey; |
| | | -(NSString*)getPublishChannel; |
| | | -(NSString*)getChannel; |
| | | -(NSString*)getAppID; |
| | | -(NSString*)getOS; |
| | | -(NSString*)getSdkVer; |
| | | -(NSString*)getSdkId; |
| | | -(NSString*)getSessionId; |
| | | -(NSString *)getPrivacyUrl; |
| | | -(NSString *)getPrivacyUpdateTime; |
| | | -(void)showPrivacyUI:(void(^)(BOOL isClose))handler; |
| | | -(void)showPrivacyUITitle:(NSString*)title url:(NSString*)url handle:(void(^)(BOOL isClose))handler; |
| | | |
| | | -(NSString*)getDeepLinkWithUrl:(NSURL*)url; |
| | | -(WAParamConfigObj*)getParamConfig; |
| | | -(void)fetchDeferredAppLink:(void(^)(NSURL *url, NSError *error))handler; |
| | | -(void)addEventContentWithString:(NSString*)string; |
| | | -(void)eventLogWithPlatform:(NSString*)platform eventName:(NSString*)eventName parameters:(NSDictionary*)parameters color:(UIColor*)color; |
| | | /** 检测设备是否越狱 */ |
| | | - (BOOL)isJailBreak; |
| | | |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WACoreProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WACore.h" |
| | | #import "WAIPush.h" |
| | | @class WACoreProxy; |
| | | |
| | | #define WALog(fmt,...) {\ |
| | | if([WACoreProxy displayLog]){\ |
| | | NSLog((@"WASDK LOG [(version %@) %s ]:" fmt), [WACoreProxy getSdkVer],__FUNCTION__, ##__VA_ARGS__);\ |
| | | [WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WACoreProxy getSdkVer],__FUNCTION__, ##__VA_ARGS__]];\ |
| | | }\ |
| | | } |
| | | |
| | | #define WALogNb(fmt,...) {\ |
| | | if([WACoreProxy displayLog]){\ |
| | | NSLog((@"WASDK LOG [(version %@) %s ]:" fmt), [WACoreProxy getSdkVer],__FUNCTION__, ##__VA_ARGS__);\ |
| | | [WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WACoreProxy getSdkVer],__FUNCTION__, ##__VA_ARGS__]];\ |
| | | }\ |
| | | } |
| | | |
| | | #define WALogImpt(fmt,...) {\ |
| | | NSLog((@"WASDK LOG [(version %@) %s ]:" fmt), [WACoreProxy getSdkVer],__FUNCTION__, ##__VA_ARGS__);\ |
| | | if([WACoreProxy isDebugMode]){\ |
| | | [WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WACoreProxy getSdkVer],__FUNCTION__, ##__VA_ARGS__]];\ |
| | | }\ |
| | | } |
| | | |
| | | #define WAEventLog(fmt,...) {\ |
| | | if([WACoreProxy displayLog]){\ |
| | | NSLog((@"WASDK LOG [(version %@) %s ]:" fmt), [WACoreProxy getSdkVer],__FUNCTION__, ##__VA_ARGS__);\ |
| | | [WACoreProxy addEventContentWithString:[NSString stringWithFormat:(@"" fmt),##__VA_ARGS__]];\ |
| | | }\ |
| | | } |
| | | /*! |
| | | @discussion WACoreProxy |
| | | - - - |
| | | */ |
| | | @interface WACoreProxy : NSObject |
| | | /*! |
| | | @abstract 初始化 |
| | | */ |
| | | +(void)init; |
| | | /*! |
| | | @abstract 设置sdk类型 0 国外,1 国内 |
| | | */ |
| | | + (void)setSDKType:(NSInteger)sdkType; |
| | | /*! |
| | | @abstract 获取sdk类型 0 国外,1 国内 |
| | | */ |
| | | + (NSInteger)getSDKType; |
| | | /*! |
| | | @abstract 开启数据收集 |
| | | */ |
| | | +(void)initAppEventTracker; |
| | | /*! |
| | | @abstract 是否调试模式 |
| | | */ |
| | | +(BOOL)isDebugMode; |
| | | /*! |
| | | @abstract 设置调试模式 |
| | | */ |
| | | +(void)setDebugMode:(BOOL)isDebugMode; |
| | | |
| | | /*! |
| | | @abstract 是否显示Log按钮 |
| | | */ |
| | | +(BOOL)displayLog; |
| | | /*! |
| | | @abstract 设置clientId |
| | | */ |
| | | +(void)setClientId:(NSString*)clientId; |
| | | /*! |
| | | @abstract 获取userId |
| | | */ |
| | | +(NSString*)getUserId; |
| | | /*! |
| | | @abstract 设置serverId |
| | | @param serverId 服务器id |
| | | */ |
| | | +(void)setServerId:(NSString *)serverId; |
| | | /*! |
| | | @abstract 获取serverId |
| | | */ |
| | | |
| | | +(NSString*)getServerId; |
| | | /*! |
| | | @abstract 设置level |
| | | @param level 等级 |
| | | */ |
| | | +(void)setLevel:(int)level; |
| | | /*! |
| | | @abstract 获取level |
| | | */ |
| | | +(int)getLevel; |
| | | /*! |
| | | @abstract 设置gameUserId |
| | | @param gameUserId 游戏userId |
| | | */ |
| | | +(void)setGameUserId:(NSString*)gameUserId; |
| | | /*! |
| | | @abstract 获取gameUserId |
| | | */ |
| | | +(NSString*)getGameUserId; |
| | | /*! |
| | | @abstract 设置nickName |
| | | @param nickName 游戏角色名 |
| | | */ |
| | | +(void)setNickName:(NSString*)nickName; |
| | | /*! |
| | | @abstract 获取nickName |
| | | */ |
| | | +(NSString*)getNickName; |
| | | /*! |
| | | @abstract 获取userFlag |
| | | */ |
| | | +(void)setUserFlag:(NSString*)userFlag; |
| | | /*! |
| | | @abstract 获取userFlag |
| | | */ |
| | | +(NSString*)getUserFlag; |
| | | /*! |
| | | @abstract 获取WA Server url |
| | | */ |
| | | +(NSString*)getWaSdkServerUrl; |
| | | /*! |
| | | @abstract 获取appKey |
| | | */ |
| | | +(NSString*)getAppKey; |
| | | /*! |
| | | @abstract 获取Publish Channel |
| | | */ |
| | | +(NSString*)getPublishChannel; |
| | | /*! |
| | | @abstract 获取Channel |
| | | */ |
| | | +(NSString*)getChannel; |
| | | /*! |
| | | @abstract 获取appId |
| | | */ |
| | | +(NSString*)getAppID; |
| | | /*! |
| | | @abstract 获取os |
| | | */ |
| | | +(NSString*)getOS; |
| | | /*! |
| | | @abstract 获取SDK版本 |
| | | */ |
| | | +(NSString*)getSdkVer; |
| | | /*! |
| | | @abstract 获取SDK ID |
| | | */ |
| | | +(NSString *)getSdkId; |
| | | /*! |
| | | @abstract 获取配置文件版本 |
| | | */ |
| | | +(NSString*)getXmlConfigVer; |
| | | /*! |
| | | @abstract 获取抽象层版本 |
| | | */ |
| | | +(NSString*)getIntfVer; |
| | | /*! |
| | | @abstract 获取SessionId |
| | | */ |
| | | +(NSString*)getSessionId; |
| | | /*! |
| | | @abstract 隐私政策URL地址 |
| | | */ |
| | | +(NSString *)getPrivacyUrl; |
| | | /*! |
| | | @abstract 隐私政策更新时间 |
| | | */ |
| | | +(NSString *)getPrivacyUpdateTime; |
| | | /*! |
| | | @abstract 隐私政策内容界面 |
| | | */ |
| | | +(void)showPrivacyUI:(void(^)(void))privacyUIClosedHandler; |
| | | +(void)showPrivacyUITitle:(NSString*)title url:(NSString*)url handle:(void(^)(void))privacyUIClosedHandler; |
| | | |
| | | /*! |
| | | @abstract 下面两个方法是关于Facebook deeplink, CP不用关注 |
| | | */ |
| | | -(NSString*)getDeepLinkWithUrl:(NSURL*)url; |
| | | |
| | | +(void)fetchDeferredAppLink:(void(^)(NSURL *url, NSError *error))handler; |
| | | /*! |
| | | @abstract 获取后台配置参数 |
| | | */ |
| | | +(WAParamConfigObj*)getParamConfig; |
| | | /*! |
| | | @abstract 下面四个方法是关于打印日志的,CP不用关注 |
| | | */ |
| | | +(void)addLogWithString:(NSString*)string; |
| | | |
| | | +(void)addLogWithoutBtn:(NSString*)string; |
| | | |
| | | +(void)addEventContentWithString:(NSString*)string; |
| | | |
| | | +(void)eventLogWithPlatform:(NSString*)platform eventName:(NSString*)eventName parameters:(NSDictionary*)parameters color:(UIColor*)color; |
| | | |
| | | /*! |
| | | @discussion 处理UIApplicationDelegate的方法[-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions]传递过来的参数。 |
| | | */ |
| | | + (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions; |
| | | |
| | | #pragma mark 消息通知 |
| | | /*! |
| | | @abstract 注册通知 |
| | | */ |
| | | + (void)application:(UIApplication *)application initPushWithDelegate:(id<UNUserNotificationCenterDelegate>)delegate API_AVAILABLE(ios(10.0)); |
| | | |
| | | /*! |
| | | @abstract 调用过用户注册通知方法之后执行 |
| | | */ |
| | | + (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings API_AVAILABLE(ios(8.0)); |
| | | |
| | | /*! |
| | | @abstract 获取deviceToken |
| | | */ |
| | | + (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken; |
| | | |
| | | /*! |
| | | @abstract 注册失败 |
| | | */ |
| | | + (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error; |
| | | |
| | | #pragma mark IOS8 IOS9 Push Notification Receive |
| | | /*! |
| | | @abstract 接收本地通知 |
| | | */ |
| | | + (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification; |
| | | |
| | | /*! |
| | | @abstract 接收远程通知 |
| | | */ |
| | | + (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; |
| | | |
| | | #pragma mark IOS10 Push Notification Receive |
| | | /*! |
| | | @abstractApp 处于前台接收通知时 |
| | | */ |
| | | + (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0)); |
| | | |
| | | /*! |
| | | @abstract 通知的点击事件 |
| | | */ |
| | | + (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler API_AVAILABLE(ios(10.0)) API_AVAILABLE(ios(10.0)); |
| | | |
| | | /*! |
| | | 程序进入后台 |
| | | @discussion 处理UIApplicationDelegate的方法[- (void)applicationDidEnterBackground:(UIApplication *)application]传递过来的参数。 |
| | | */ |
| | | + (void)applicationDidEnterBackground:(UIApplication *)application; |
| | | |
| | | /*! |
| | | 程序将进入前台 |
| | | @discussion 处理UIApplicationDelegate的方法[- (void)applicationWillEnterForeground:(UIApplication *)application]传递过来的参数。 |
| | | */ |
| | | + (void)applicationWillEnterForeground:(UIApplication *)application; |
| | | |
| | | /*! |
| | | 程序进入前台 |
| | | @discussion 处理UIApplicationDelegate的方法[- (void)applicationDidBecomeActive:(UIApplication *)application]传递过来的参数。 |
| | | */ |
| | | + (void)applicationDidBecomeActive:(UIApplication *)application; |
| | | |
| | | /*! |
| | | @discussion 处理UIApplicationDelegate的方法[-(BOOL)application:(UIApplication *)application |
| | | openURL:(NSURL *)url |
| | | sourceApplication:(NSString *)sourceApplication |
| | | annotation:(id)annotation]传递过来的参数。 |
| | | */ |
| | | + (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation; |
| | | |
| | | + (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options; |
| | | |
| | | + (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler API_AVAILABLE(ios(8.0)); |
| | | |
| | | /*! |
| | | @abstract 设备是否越狱 |
| | | */ |
| | | + (BOOL)isJailBreak; |
| | | |
| | | |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WACscProxy.h |
| | | // WASdkIntf |
| | | // |
| | | // Created by hank on 2018/6/7. |
| | | // Copyright © 2018年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @interface WACscProxy : NSObject |
| | | |
| | | /*! |
| | | @abstract 启动机器人客服界面 |
| | | @param showConversationFlag (0或1):是否为vip, 0:标示非VIP;1:表示:VIP此处为1时,将在机器人的聊天界面右上角,提供人工聊天的入口功能 |
| | | @param config 可为nil,自定义Dictionary信息可以在此处设置特定的Tag信息 |
| | | */ |
| | | + (void)showElva:(nonnull NSString *)showConversationFlag config:(nullable NSMutableDictionary *)config; |
| | | |
| | | /*! |
| | | @abstract 启动运营界面 |
| | | @param showConversationFlag (0或1):是否为vip, 0:标示非VIP;1:表示:VIP此处为1时,将在机器人的聊天界面右上角,提供人工聊天的入口功能 |
| | | @param config 可为nil,自定义Dictionary信息可以在此处设置特定的Tag信息 |
| | | */ |
| | | + (void)showElvaOP:(nonnull NSString *)showConversationFlag config:(nullable NSMutableDictionary *)config; |
| | | |
| | | /*! |
| | | @abstract 展示全部FAQ菜单 |
| | | @param config 可为nil,自定义Dictionary信息可以在此处设置特定的Tag信息 |
| | | */ |
| | | + (void)showFAQs:(nullable NSMutableDictionary *)config; |
| | | |
| | | /*! |
| | | @abstract 展示FAQ分类 |
| | | @param sectionPublishId FAQ Section的PublishID(可以在AIHelp 后台 中,从FAQs菜单下[Section]菜单,查看PublishID) |
| | | @param config 可为nil,自定义Dictionary信息可以在此处设置特定的Tag信息 |
| | | */ |
| | | + (void)showFAQSection:(nonnull NSString *)sectionPublishId config:(nullable NSMutableDictionary *)config; |
| | | |
| | | /*! |
| | | @abstract 展示单条FAQ |
| | | @param faqId FAQ的编号。打开AIHelp 后台中,在机器人→常见问题页面下找到指定FAQ的FAQ编号,注意:此FAQID不能填写客服后台未存在的FAQ编号 |
| | | @param config 可为nil,自定义Dictionary信息可以在此处设置特定的Tag信息 |
| | | */ |
| | | + (void)showSingleFAQ:(nonnull NSString *)faqId config:(nullable NSMutableDictionary *)config; |
| | | |
| | | /*! |
| | | @abstract 进入人工客服界面 |
| | | @param config 可为nil,自定义Dictionary信息可以在此处设置特定的Tag信息 |
| | | */ |
| | | + (void)showConversation:(nullable NSMutableDictionary *)config; |
| | | |
| | | /*! |
| | | @abstract 设置游戏名称信息 |
| | | @param name 设置后将显示在SDK中相关界面导航栏 |
| | | */ |
| | | + (void)setName:(nonnull NSString *)name; |
| | | |
| | | /*! |
| | | @abstract 设置SDK语言 |
| | | @param language 语言名称 |
| | | */ |
| | | + (void)setLanguage:(nonnull NSString *)language; |
| | | |
| | | #pragma mark -- 设置SDK方向 |
| | | /* |
| | | |
| | | UIInterfaceOrientationMaskPortrait, // 设备(屏幕)直立 |
| | | UIInterfaceOrientationMaskLandscapeLeft, // 设备(屏幕)向左横置 |
| | | UIInterfaceOrientationMaskLandscapeRight, // 设备(屏幕)向右橫置 |
| | | UIInterfaceOrientationMaskPortraitUpsideDown,// 设备(屏幕)直立,上下顛倒 |
| | | UIInterfaceOrientationMaskLandscape, // 设备(屏幕)横置,包含向左和向右 |
| | | UIInterfaceOrientationMaskAll, // 设备(屏幕)可以支持上下左右四个方向 |
| | | UIInterfaceOrientationMaskAllButUpsideDown //设备(屏幕)可以支持上左右三个个方向,但不支持直立上下颠倒 |
| | | |
| | | */ |
| | | + (void)setSDKInterfaceOrientationMask:(NSUInteger)interfaceOrientationMask; |
| | | |
| | | |
| | | /*! |
| | | @abstract 检测是否开启aihelp |
| | | */ |
| | | + (BOOL) isOpenAiHelp; |
| | | |
| | | + (void) openAiHelp:(NSString * _Nonnull )language; |
| | | |
| | | + (void) openAiHelp:(NSString * _Nonnull )language isVip:(BOOL)vip; |
| | | |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WADeleteRequestModel.h |
| | | // WASdkIntf |
| | | // |
| | | // Created by lpw on 2022/6/9. |
| | | // Copyright © 2022 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @interface WADeleteRequestModel : NSObject |
| | | /*! |
| | | @abstract 删除平台(Facebook,Apple) |
| | | */ |
| | | @property(copy,nonatomic)NSString *deletePlatform; |
| | | /*! |
| | | @abstract 删除平台accessToken |
| | | */ |
| | | @property(copy,nonatomic)NSString *deleteToken; |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |
New file |
| | |
| | | // |
| | | // WADeleteResult.h |
| | | // WASdkIntf |
| | | // |
| | | // Created by lpw on 2022/6/14. |
| | | // Copyright © 2022 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @interface WADeleteResult : NSObject |
| | | @property(copy,nonatomic)NSString *apply_date; //申请时间(游戏时区) |
| | | @property(copy,nonatomic)NSString *delete_date; //注销时间(游戏时区) |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |
New file |
| | |
| | | // |
| | | // GHWSDKShareError.h |
| | | // GHWSdkUI |
| | | // |
| | | // Created by wuyx on 15/6/12. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WAErrorCode.h" |
| | | |
| | | @interface WAError : NSObject |
| | | + (NSString *)errorDomain; |
| | | |
| | | + (BOOL)errorIsNetworkError:(NSError *)error; |
| | | |
| | | + (NSError *)errorWithCode:(NSInteger)code message:(NSString *)message; |
| | | + (NSError *)errorWithCode:(NSInteger)code message:(NSString *)message underlyingError:(NSError *)underlyingError; |
| | | + (NSError *)errorWithCode:(NSInteger)code |
| | | userInfo:(NSDictionary *)userInfo |
| | | message:(NSString *)message |
| | | underlyingError:(NSError *)underlyingError; |
| | | |
| | | + (NSError *)invalidArgumentErrorWithName:(NSString *)name value:(id)value message:(NSString *)message; |
| | | + (NSError *)invalidArgumentErrorWithName:(NSString *)name |
| | | value:(id)value |
| | | message:(NSString *)message |
| | | underlyingError:(NSError *)underlyingError; |
| | | + (NSError *)invalidCollectionErrorWithName:(NSString *)name |
| | | collection:(id<NSFastEnumeration>)collection |
| | | item:(id)item |
| | | message:(NSString *)message; |
| | | + (NSError *)invalidCollectionErrorWithName:(NSString *)name |
| | | collection:(id<NSFastEnumeration>)collection |
| | | item:(id)item |
| | | message:(NSString *)message |
| | | underlyingError:(NSError *)underlyingError; |
| | | |
| | | + (NSError *)requiredArgumentErrorWithName:(NSString *)name message:(NSString *)message; |
| | | + (NSError *)requiredArgumentErrorWithName:(NSString *)name |
| | | message:(NSString *)message |
| | | underlyingError:(NSError *)underlyingError; |
| | | |
| | | + (NSError *)unknownErrorWithMessage:(NSString *)message; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAShareConstants.h |
| | | // WAUI |
| | | // |
| | | // Created by wuyx on 15/6/12. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | typedef enum WAErrorCode |
| | | { |
| | | /*! |
| | | @abstract Reserved. |
| | | */ |
| | | WAReservedErrorCode = 0, |
| | | |
| | | /*! |
| | | @abstract The error code for errors from invalid encryption on incoming encryption URLs. |
| | | */ |
| | | WAEncryptionErrorCode, |
| | | |
| | | /*! |
| | | @abstract The error code for errors from invalid arguments to SDK methods. |
| | | */ |
| | | WAInvalidArgumentErrorCode, |
| | | |
| | | /*! |
| | | @abstract The error code for unknown errors. |
| | | */ |
| | | WAUnknownErrorCode, |
| | | |
| | | /*! |
| | | @abstract A request failed due to a network error. Use NSUnderlyingErrorKey to retrieve |
| | | the error object from the NSURLConnection for more information. |
| | | */ |
| | | WANetworkErrorCode, |
| | | |
| | | /*! |
| | | @abstract The error code for errors encounted during an App Events flush. |
| | | */ |
| | | WAAppEventsFlushErrorCode, |
| | | |
| | | /*! |
| | | @abstract An endpoint that returns a binary response was used with FBSDKGraphRequestConnection. |
| | | @discussion Endpoints that return image/jpg, etc. should be accessed using NSURLRequest |
| | | */ |
| | | WAGraphRequestNonTextMimeTypeReturnedErrorCode, |
| | | |
| | | /*! |
| | | @abstract The operation failed because the server returned an unexpected response. |
| | | @discussion You can get this error if you are not using the most recent SDK, or you are accessing a version of the |
| | | Graph API incompatible with the current SDK. |
| | | */ |
| | | WAGraphRequestProtocolMismatchErrorCode, |
| | | |
| | | /*! |
| | | @abstract The Graph API returned an error. |
| | | @discussion See below for useful userInfo keys (beginning with FBSDKGraphRequestError*) |
| | | */ |
| | | WAGraphRequestGraphAPIErrorCode, |
| | | |
| | | /*! |
| | | @abstract The specified dialog configuration is not available. |
| | | @discussion This error may signify that the configuration for the dialogs has not yet been downloaded from the server |
| | | or that the dialog is unavailable. Subsequent attempts to use the dialog may succeed as the configuration is loaded. |
| | | */ |
| | | WADialogUnavailableErrorCode, |
| | | }WAErrorCode; |
| | | |
| | | |
| | | |
| | | extern NSString *const WAErrorDomain; |
| | | |
| | | extern NSString *const WAErrorArgumentCollectionKey; |
| | | |
| | | /*! |
| | | @abstract The userInfo key for the invalid argument name for errors with FBSDKInvalidArgumentErrorCode. |
| | | */ |
| | | extern NSString *const WAErrorArgumentNameKey; |
| | | |
| | | /*! |
| | | @abstract The userInfo key for the invalid argument value for errors with FBSDKInvalidArgumentErrorCode. |
| | | */ |
| | | extern NSString *const WAErrorArgumentValueKey; |
| | | |
| | | /*! |
| | | @abstract The userInfo key for the message for developers in NSErrors that originate from the SDK. |
| | | @discussion The developer message will not be localized and is not intended to be presented within the app. |
| | | */ |
| | | extern NSString *const WAErrorDeveloperMessageKey; |
| | | |
| | | /*! |
| | | @abstract The userInfo key describing a localized description that can be presented to the user. |
| | | */ |
| | | extern NSString *const WAErrorLocalizedDescriptionKey; |
| | | |
| | | /*! |
| | | @abstract The userInfo key describing a localized title that can be presented to the user, used with `FBSDKLocalizedErrorDescriptionKey`. |
| | | */ |
| | | extern NSString *const WAErrorLocalizedTitleKey; |
| | | |
New file |
| | |
| | | // |
| | | // WAEvent.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/4/14. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAEvent 该类用来做数据收集 |
| | | - - - |
| | | */ |
| | | @interface WAEvent : NSObject |
| | | /*! |
| | | @abstract 默认事件名称 |
| | | */ |
| | | @property(nonatomic,strong)NSString* defaultEventName; |
| | | /*! |
| | | @abstract 默认累加值 |
| | | */ |
| | | @property(nonatomic)double defaultValue; |
| | | /*! |
| | | @abstract 默认参数字典 |
| | | */ |
| | | @property(nonatomic,strong)NSDictionary* defaultParamValues; |
| | | /*! |
| | | @abstract 数据收集渠道开关 |
| | | */ |
| | | @property(nonatomic,strong)NSDictionary* channelSwitcherDict; |
| | | /*! |
| | | @abstract 各个渠道事件名称 |
| | | */ |
| | | @property(nonatomic,strong)NSDictionary* eventNameDict; |
| | | /*! |
| | | @abstract 各个渠道累加值 |
| | | */ |
| | | @property(nonatomic,strong)NSDictionary* valueDict; |
| | | /*! |
| | | @abstract 各个渠道参数字典 |
| | | */ |
| | | @property(nonatomic,strong)NSDictionary* paramValuesDict; |
| | | /*! |
| | | @discussion 构建一个WAIEvent实例,调用该方法可以将数据发送到各个渠道。 |
| | | */ |
| | | -(void)trackEvent; |
| | | @end |
New file |
| | |
| | | // |
| | | // GHWSDKAppRequest.h |
| | | // GHWSdkUI |
| | | // |
| | | // Created by wuyx on 15/7/17. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WAAppUser.h" |
| | | #import "WAFBObject.h" |
| | | #import "WAFBApplication.h" |
| | | /*! |
| | | @discussion WAFBApplication |
| | | - - - |
| | | */ |
| | | @interface WAFBAppRequest : NSObject |
| | | /*! |
| | | @abstract ID |
| | | */ |
| | | @property(nonatomic,copy)NSString* ID; |
| | | /*! |
| | | @abstract message |
| | | */ |
| | | @property(nonatomic,copy)NSString* message; |
| | | /*! |
| | | @abstract created_time |
| | | */ |
| | | @property(nonatomic,copy)NSString* created_time; |
| | | /*! |
| | | @abstract action_type |
| | | */ |
| | | @property(nonatomic,copy)NSString* action_type; |
| | | /*! |
| | | @abstract from |
| | | */ |
| | | @property(nonatomic,copy)WAAppUser* from; |
| | | /*! |
| | | @abstract to |
| | | */ |
| | | @property(nonatomic,copy)WAAppUser* to; |
| | | /*! |
| | | @abstract object |
| | | */ |
| | | @property(nonatomic,copy)WAFBObject* object; |
| | | /*! |
| | | @abstract application |
| | | */ |
| | | @property(nonatomic,copy)WAFBApplication* application; |
| | | /*! |
| | | @abstract data |
| | | */ |
| | | @property(nonatomic,copy)NSDictionary* data; |
| | | @end |
New file |
| | |
| | | // |
| | | // GHWSDKFBApplication.h |
| | | // GHWSdkUI |
| | | // |
| | | // Created by wuyx on 15/9/15. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAFBApplication |
| | | - - - |
| | | */ |
| | | @interface WAFBApplication : NSObject<NSCoding,NSCopying> |
| | | /*! |
| | | @abstract ID |
| | | */ |
| | | @property(nonatomic,strong)NSString* ID; |
| | | /*! |
| | | @abstract name |
| | | */ |
| | | @property(nonatomic,strong)NSString* name; |
| | | /*! |
| | | @abstract name_space |
| | | */ |
| | | @property(nonatomic,strong)NSString* name_space; |
| | | /*! |
| | | @abstract category |
| | | */ |
| | | @property(nonatomic,strong)NSString* category; |
| | | /*! |
| | | @abstract link |
| | | */ |
| | | @property(nonatomic,strong)NSString* link; |
| | | +(WAFBApplication *)parserWithResultDict:(NSDictionary *)resultDict; |
| | | @end |
New file |
| | |
| | | // |
| | | // GHWSDKGift.h |
| | | // GHWSdkUI |
| | | // |
| | | // Created by wuyx on 15/7/16. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAFBObject |
| | | - - - |
| | | */ |
| | | @interface WAFBObject : NSObject<NSCopying> |
| | | /*! |
| | | @abstract ID |
| | | */ |
| | | @property(nonatomic,copy)NSString* ID; |
| | | /*! |
| | | @abstract type |
| | | */ |
| | | @property(nonatomic,copy)NSString* type; |
| | | /*! |
| | | @abstract title |
| | | */ |
| | | @property(nonatomic,copy)NSString* title; |
| | | /*! |
| | | @abstract imageUrls |
| | | */ |
| | | @property(nonatomic,copy)NSString* imageUrls; |
| | | /*! |
| | | @abstract created_time |
| | | */ |
| | | @property(nonatomic,copy)NSString* created_time; |
| | | /*! |
| | | @abstract oDescription |
| | | */ |
| | | @property(nonatomic,copy)NSString* oDescription; |
| | | /*! |
| | | @abstract is_scraped |
| | | */ |
| | | @property(nonatomic)Boolean is_scraped; |
| | | /*! |
| | | @abstract data |
| | | */ |
| | | @property(nonatomic,copy)NSDictionary* data; |
| | | +(WAFBObject*)parserWithResultDict:(NSDictionary*)dict; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBGameRequestContent.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | /*! |
| | | @typedef NS_ENUM(NSUInteger, WAFBGameRequestActionType) |
| | | @abstract Additional context about the nature of the request. |
| | | */ |
| | | typedef NS_ENUM(NSUInteger, WAGameRequestActionType) |
| | | { |
| | | /*! No action type */ |
| | | WAGameRequestActionTypeNone = 0, |
| | | /*! Send action type: The user is sending an object to the friends. */ |
| | | WAGameRequestActionTypeSend, |
| | | /*! Ask For action type: The user is asking for an object from friends. */ |
| | | WAGameRequestActionTypeAskFor, |
| | | /*! Turn action type: It is the turn of the friends to play against the user in a match. (no object) */ |
| | | WAGameRequestActionTypeTurn, |
| | | |
| | | WAGameRequestActionInvite, |
| | | |
| | | WAGameRequestActionRequest |
| | | }; |
| | | |
| | | @interface WAGameRequestContent : NSObject |
| | | /*! |
| | | @abstract Used when defining additional context about the nature of the request. |
| | | @discussion The parameter 'objectID' is required if the action type is either |
| | | 'WAFBGameRequestActionTypeSend' or 'WAFBGameRequestActionTypeAskFor'. |
| | | @seealso objectID |
| | | */ |
| | | @property (nonatomic, assign) WAGameRequestActionType actionType; |
| | | |
| | | /*! |
| | | @abstract Additional freeform data you may pass for tracking. This will be stored as part of |
| | | the request objects created. The maximum length is 255 characters. |
| | | */ |
| | | @property (nonatomic, copy) NSString *data; |
| | | |
| | | /*! |
| | | @abstract This controls the set of friends someone sees if a multi-friend selector is shown. |
| | | It is FBSDKGameRequestNoFilter by default, meaning that all friends can be shown. |
| | | If specify as FBSDKGameRequestAppUsersFilter, only friends who use the app will be shown. |
| | | On the other hands, use FBSDKGameRequestAppNonUsersFilter to filter only friends who do not use the app. |
| | | @discussion The parameter name is preserved to be consistent with the counter part on desktop. |
| | | */ |
| | | //@property (nonatomic, assign) FBSDKGameRequestFilter filters; |
| | | |
| | | /*! |
| | | @abstract A plain-text message to be sent as part of the request. This text will surface in the App Center view |
| | | of the request, but not on the notification jewel. Required parameter. |
| | | */ |
| | | @property (nonatomic, copy) NSString *message; |
| | | |
| | | /*! |
| | | @abstract The Open Graph object ID of the object being sent. |
| | | @seealso actionType |
| | | */ |
| | | @property (nonatomic, copy) NSString *objectID; |
| | | |
| | | /*! |
| | | @abstract An array of user IDs, usernames or invite tokens (NSString) of people to send request. |
| | | @discussion These may or may not be a friend of the sender. If this is specified by the app, |
| | | the sender will not have a choice of recipients. If not, the sender will see a multi-friend selector |
| | | |
| | | This is equivalent to the "to" parameter when using the web game request dialog. |
| | | */ |
| | | @property (nonatomic, copy) NSArray *recipients; |
| | | |
| | | /*! |
| | | @abstract An array of user IDs that will be included in the dialog as the first suggested friends. |
| | | Cannot be used together with filters. |
| | | @discussion This is equivalent to the "suggestions" parameter when using the web game request dialog. |
| | | */ |
| | | @property (nonatomic, copy) NSArray *recipientSuggestions; |
| | | |
| | | /*! |
| | | @abstract The title for the dialog. |
| | | */ |
| | | @property (nonatomic, copy) NSString *title; |
| | | |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBGameRequestDialog.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | @class WAGameRequestDialog,WAGameRequestContent; |
| | | /*! |
| | | @abstract A delegate for WAFBGameRequestDialog. |
| | | @discussion The delegate is notified with the results of the game request as long as the application has permissions to |
| | | receive the information. For example, if the person is not signed into the containing app, the shower may not be able |
| | | to distinguish between completion of a game request and cancellation. |
| | | */ |
| | | @protocol WAGameRequestDialogDelegate <NSObject> |
| | | |
| | | /*! |
| | | @abstract Sent to the delegate when the game request completes without error. |
| | | @param gameRequestDialog The WAFBGameRequestDialog that completed. |
| | | @param platform The platform from the dialog . |
| | | @param results The results from the dialog. This may be nil or empty. |
| | | */ |
| | | - (void)gameRequestDialog:(WAGameRequestDialog *)gameRequestDialog platform:(NSString *const)platform didCompleteWithResults:(NSDictionary *)results; |
| | | |
| | | /*! |
| | | @abstract Sent to the delegate when the game request encounters an error. |
| | | @param gameRequestDialog The WAFBGameRequestDialog that completed. |
| | | @param platform The platform from the dialog . |
| | | @param error The error. |
| | | */ |
| | | - (void)gameRequestDialog:(WAGameRequestDialog *)gameRequestDialog platform:(NSString *const)platform didFailWithError:(NSError *)error; |
| | | |
| | | /*! |
| | | @abstract Sent to the delegate when the game request dialog is cancelled. |
| | | @param gameRequestDialog The WAFBGameRequestDialog that completed. |
| | | @param platform The platform from the dialog . |
| | | */ |
| | | - (void)gameRequestDialogDidCancel:(WAGameRequestDialog *)gameRequestDialog platform:(NSString *const)platform; |
| | | |
| | | @end |
| | | |
| | | @interface WAGameRequestDialog : NSObject |
| | | /*! |
| | | @abstract The receiver's delegate or nil if it doesn't have a delegate. |
| | | */ |
| | | @property (nonatomic, weak) id<WAGameRequestDialogDelegate> delegate; |
| | | |
| | | /*! |
| | | @abstract The content for game request. |
| | | */ |
| | | @property (nonatomic, strong) WAGameRequestContent *content; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAVKCommunity.h |
| | | // WAVkImplUI |
| | | // |
| | | // Created by wuyx on 16/7/7. |
| | | // Copyright © 2016年 GHW. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @interface WAGroup : NSObject |
| | | @property(nonatomic,copy)NSString* gid; |
| | | @property(nonatomic,copy)NSString* name; |
| | | @property(nonatomic,copy)NSString* screen_name; |
| | | @property(nonatomic,copy)NSString* type; |
| | | @property(nonatomic,copy)NSString* photo; |
| | | @property(nonatomic,copy)NSString* photo_medium; |
| | | @property(nonatomic,copy)NSString* photo_big; |
| | | @property(nonatomic,copy)NSString* desc; |
| | | @property(nonatomic,copy)NSString* members_count; |
| | | @property(nonatomic,copy)NSString* status; |
| | | @property(nonatomic,copy)NSString* schemeUrl; |
| | | @property(nonatomic,copy)NSString* pageUrl; |
| | | @property(nonatomic)int is_closed; |
| | | @property(nonatomic)BOOL is_member; |
| | | +(NSArray*)parseWithDict:(NSDictionary*)dict; |
| | | +(NSArray*)parseWithArray:(NSArray*)arr; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAHupProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/2. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | @class WAUpdateInfo; |
| | | /*! |
| | | @discussion WAHupProxy 该类为热更新的代理类。 |
| | | - - - |
| | | */ |
| | | @interface WAHupProxy : NSObject |
| | | /*! |
| | | @abstract 检查更新 |
| | | @param handler 回调 |
| | | */ |
| | | +(void)checkUpdate:(void(^)(NSError* error,WAUpdateInfo* updateInfo))handler; |
| | | /*! |
| | | @abstract 开始更新 |
| | | @param handler 回调 |
| | | */ |
| | | +(void)startUpdate:(WAUpdateInfo*)updateInfo handler:(void(^)(NSError* error))handler; |
| | | /*! |
| | | @abstract 获取更新包信息 |
| | | @return WAUpdateInfo 更新包信息 |
| | | */ |
| | | +(WAUpdateInfo*)getPatchInfo; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAIAd.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by hank on 2017/8/15. |
| | | // Copyright © 2017年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WAAdProxy.h" |
| | | |
| | | @interface WAIAd : NSObject |
| | | |
| | | /** 加载广告 */ |
| | | - (void)loadAd; |
| | | |
| | | /** 设置视频广告缓存完回调 */ |
| | | - (void)setWAAdRewardedVideoCachedDelegate:(id<WAAdRewardedVideoCachedDelegate>)delegate; |
| | | |
| | | /** 检测可播放广告数量 */ |
| | | - (NSInteger) checkRewardedVideo; |
| | | |
| | | /** 显示广告 */ |
| | | - (void) displayRewardedVideoWithExtInfo:(NSString *)extInfo delegate:(id<WAAdRewardedVideoDelegate>)delegate; |
| | | |
| | | - (void)applicationDidBecomeActive:(UIApplication *)application; |
| | | |
| | | - (void)applicationDidEnterBackground:(UIApplication *)application; |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAIApw.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/2. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @interface WAIApw : NSObject |
| | | -(void)showEntryFlowIcon; |
| | | -(void)hideEntryFlowIcon; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAICsc.h |
| | | // WASdkIntf |
| | | // |
| | | // Created by hank on 2018/6/7. |
| | | // Copyright © 2018年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @interface WAICsc : NSObject |
| | | |
| | | #pragma mark - 启动机器人客服界面 |
| | | - (void)showElva:(nonnull NSString *)showConversationFlag config:(nullable NSMutableDictionary *)config; |
| | | |
| | | #pragma mark - 启动运营界面 |
| | | - (void)showElvaOP:(nonnull NSString *)showConversationFlag config:(nullable NSMutableDictionary *)config; |
| | | |
| | | #pragma mark 展示全部FAQ菜单 |
| | | - (void)showFAQs:(nullable NSMutableDictionary *)config; |
| | | |
| | | #pragma mark 展示FAQ分类 |
| | | - (void)showFAQSection:(nonnull NSString *)sectionPublishId config:(nullable NSMutableDictionary *)config; |
| | | |
| | | #pragma mark 展示单条FAQ |
| | | - (void)showSingleFAQ:(nonnull NSString *)faqId config:(nullable NSMutableDictionary *)config; |
| | | |
| | | #pragma mark - 进入人工客服界面 |
| | | - (void)showConversation:(nullable NSMutableDictionary *)config; |
| | | |
| | | #pragma mark -- 设置游戏名称信息 |
| | | /*! |
| | | DEPRECATED: aihep2.x版本已废弃 |
| | | */ |
| | | - (void)setName:(nonnull NSString *)name __attribute__ ((deprecated)); |
| | | |
| | | #pragma mark -- 设置SDK语言 |
| | | - (void)setLanguage:(nonnull NSString *)language; |
| | | #pragma mark -- 设置SDK方向 |
| | | /* |
| | | |
| | | UIInterfaceOrientationMaskPortrait, // 设备(屏幕)直立 |
| | | UIInterfaceOrientationMaskLandscapeLeft, // 设备(屏幕)向左横置 |
| | | UIInterfaceOrientationMaskLandscapeRight, // 设备(屏幕)向右橫置 |
| | | UIInterfaceOrientationMaskPortraitUpsideDown,// 设备(屏幕)直立,上下顛倒 |
| | | UIInterfaceOrientationMaskLandscape, // 设备(屏幕)横置,包含向左和向右 |
| | | UIInterfaceOrientationMaskAll, // 设备(屏幕)可以支持上下左右四个方向 |
| | | UIInterfaceOrientationMaskAllButUpsideDown //设备(屏幕)可以支持上左右三个个方向,但不支持直立上下颠倒 |
| | | |
| | | */ |
| | | - (void)setSDKInterfaceOrientationMask:(NSUInteger)interfaceOrientationMask; |
| | | |
| | | #pragma mark -- 判断是否加载aihelp模块 |
| | | - (BOOL) isOpenAiHelp; |
| | | |
| | | #pragma mark -- 打开aihelp |
| | | - (void) openAiHelp:(NSString * _Nonnull )language; |
| | | |
| | | |
| | | #pragma mark -- 打开aihelp 扩展是否为vip |
| | | - (void) openAiHelp:(NSString * _Nonnull )language isVip:(BOOL)vip; |
| | | |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAIHup.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/2. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WAHupProxy.h" |
| | | @interface WAIHup : NSObject |
| | | -(void)checkUpdate:(void(^)(NSError* error,WAUpdateInfo* updateInfo))handler; |
| | | -(void)startUpdate:(WAUpdateInfo*)updateInfo handler:(void(^)(NSError* error))handler; |
| | | -(WAUpdateInfo*)getPatchInfo; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAIPay.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by GHW-T-01 on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import <StoreKit/StoreKit.h> |
| | | |
| | | @protocol WAInventoryDelegate,WAPaymentDelegate; |
| | | @interface WAIPay : NSObject |
| | | -(void)init4Iap; |
| | | -(void)queryInventory:(id<WAInventoryDelegate>)delegate; |
| | | -(void)payWithProductId:(NSString *)productId extInfo:(NSString *)extInfo delegate:(id<WAPaymentDelegate>)delegate; |
| | | -(void)queryChannelProduct:(NSString *)channel |
| | | callBackBlock:(void(^)(NSArray *channelProductsArray,NSError *error))callBackBlock; |
| | | -(BOOL)isPayServiceAvailable; |
| | | -(void)fetchProductInformations:(NSDictionary *)waProductIds inventoryDelegate:(id<WAInventoryDelegate>)delegate; |
| | | - (void)checkFinishTransactions; |
| | | -(SKProduct*)getCurrentProduct; |
| | | -(NSData*)getCurrentReceipt; |
| | | -(float)getReorderLimitTime; |
| | | -(void)payLog:(NSString *)logInfo; |
| | | -(void)startRunAppleTransactionObserve; |
| | | -(void)removeAppleTransactionObserve; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAIPush.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by hank on 2017/4/1. |
| | | // Copyright © 2017年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import <UIKit/UIKit.h> |
| | | #import <UserNotifications/UserNotifications.h> |
| | | |
| | | @interface WAIPush : NSObject |
| | | |
| | | // 注册通知 |
| | | - (void)application:(UIApplication *)application initPushWithDelegate:(id<UNUserNotificationCenterDelegate>)delegate; |
| | | |
| | | // 调用过用户注册通知方法之后执行 |
| | | - (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings; |
| | | |
| | | // 获取deviceToken |
| | | - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken; |
| | | |
| | | // 注册失败 |
| | | - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error; |
| | | |
| | | #pragma mark IOS8 IOS9 Push Notification Receive |
| | | // 接收本地通知 |
| | | -(void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification; |
| | | // 接收远程通知 |
| | | - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; |
| | | |
| | | #pragma mark IOS10 Push Notification Receive |
| | | //App处于前台接收通知时 |
| | | - (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler; |
| | | |
| | | // 通知的点击事件 |
| | | - (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler; |
| | | |
| | | // 程序进入后台 |
| | | - (void)applicationDidEnterBackground:(UIApplication *)application; |
| | | |
| | | // 程序将进入前台 |
| | | - (void)applicationWillEnterForeground:(UIApplication *)application; |
| | | |
| | | // 程序进入前台 |
| | | - (void)applicationDidBecomeActive:(UIApplication *)application; |
| | | |
| | | // 拉取消息 |
| | | - (void)pullNotification; |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAISocial.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by GHW-T-01 on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WASocialProxy.h" |
| | | @protocol WASharingContent; |
| | | |
| | | @interface WAISocial : NSObject |
| | | -(void)shareWithContent:(NSObject<WASharingContent>*)shareContent shareWithUI:(BOOL)shareWithUI delegate:(NSObject<WASharingDelegate>*)delegate; |
| | | -(void)appInviteWithContent:(WAAppInviteContent*)content delegate:(NSObject<WAAppInviteDialogDelegate>*)delegate; |
| | | -(void)queryInvitableFriendsWithDuration:(float)duration completeBlock:(void(^)(NSArray* friends,NSError *error))block; |
| | | -(void)gameInviteWithContent:(WAGameRequestContent*)content delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | -(void)getCurrentAppLinkedGroupWithExtInfo:(NSString*)extInfo completeBlock:(void(^)(NSArray* groups,NSError* error))block; |
| | | -(void)getCurrentUserGroupWithExtInfo:(NSString*)extInfo completeBlock:(void(^)(NSArray* groups,NSError* error))block; |
| | | -(void)getGroupWithGroupIds:(NSArray*)groupIds extInfo:(NSString*)extInfo completeBlock:(void(^)(NSArray* groups,NSError* error))block; |
| | | -(void)getGroupsWithExtInfo:(NSString*)extInfo completeBlock:(void(^)(NSArray* groups,NSError* error))block; |
| | | -(void)joinGroupWithGroupId:(NSString*)groupId extInfo:(NSString*)extInfo completeBlock:(void(^)(NSError* error))block; |
| | | -(void)openGroupPageWithGroupUri:(NSString *const)groupUri extInfo:(NSString*)extInfo; |
| | | -(void)queryFriendsWithCompleteBlock:(void(^)(NSArray* friends,NSError *error))block; |
| | | -(void)queryFBGraphObjectsWithObjectType:(NSString*)objectType completeBlock:(void(^)(NSArray<WAFBObject *>* objects,NSError *error))block; |
| | | -(void)fbSendGiftWithContent:(WAGameRequestContent*)content delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | -(void)fbAskForGiftWithContent:(WAGameRequestContent*)content delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | -(void)fbQueryReceivedGiftsWithCompleteBlock:(void(^)(NSArray<WAFBAppRequest *>* gifts,NSError *error))block; |
| | | -(void)fbQueryAskForGiftRequestsWithCompleteBlock:(void(^)(NSArray<WAFBAppRequest *>* requests,NSError *error))block; |
| | | -(void)fbDeleteRequestWithRequestId:(NSString*)requestId completeBlock:(void(^)(id result,NSError *error))block; |
| | | -(void)sendRequestWithRequestType:(NSString *const)requestType title:(NSString*)title message:(NSString*)message objectId:(NSString*)objectId receiptIds:(NSArray*)receiptIds delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | -(void)createInviteInfoWithResults:(NSDictionary*)results handler:(void (^)(NSUInteger code,NSString* msg, NSError* error)) handler; |
| | | -(void)inviteInstallRewardWithTokenString:(NSString*)tokenString handler:(void (^)(NSUInteger code,NSString* msg, NSError* error)) handler; |
| | | -(void)inviteEventRewardWithEventName:(NSString*)eventName handler:(void (^)(NSUInteger code,NSString* msg, NSError* error)) handler; |
| | | -(void)postWithRequestId:(NSString*)requestId andInviteeIds:(NSString*)inviteeIds platform:(NSString *const)platfrom handler:(void (^)(NSUInteger code,NSString* msg, NSError* error)) handler; |
| | | -(void)inviteInstallRewardWithTokenString:(NSString *)accessToken platform:(NSString*)platform inviteIds:(NSString*)inviteIds handler:(void (^)(NSUInteger, NSString *, NSError *))handler; |
| | | -(void)inviteEventRewardWithPlatform:(NSString *const)platform eventName:(NSString*)eventName handler:(void (^)(NSUInteger code,NSString* msg, NSError* error)) handler; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAITrack.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by GHW-T-01 on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import <UIKit/UIKit.h> |
| | | |
| | | @interface WAITrack : NSObject |
| | | @property(strong,nonatomic)NSMutableDictionary *params; |
| | | @property(nonatomic)double value; |
| | | @property(copy,nonatomic)NSDecimalNumber* numValue; |
| | | @property(copy,nonatomic)NSString* eventName; |
| | | |
| | | -(void)initTracker; |
| | | -(void)trackWithEventName:(NSString *const)eventName valueToSum:(double)value params:(NSDictionary*)params; |
| | | -(void)trackWithEventName:(NSString *const)eventName numValueToSum:(NSDecimalNumber*)numValue params:(NSDictionary*)params; |
| | | -(void)autoTriggerAfterPayment:(BOOL)isAuto; |
| | | -(BOOL)getAutoTriggerAfterPayment; |
| | | -(NSString*)getCollectionInfo; |
| | | |
| | | |
| | | -(void)eventNameTransfer:(NSString *)eventName; |
| | | /** |
| | | * 安装游戏 |
| | | */ |
| | | -(void)launch; |
| | | /** |
| | | * 打开游戏 |
| | | */ |
| | | -(void)startUp; |
| | | /** |
| | | * 注册账号 |
| | | */ |
| | | -(void)register_; |
| | | /** |
| | | * 登录游戏 |
| | | */ |
| | | -(void)login; |
| | | /** |
| | | * 点击充值 |
| | | */ |
| | | -(void)initiatedPayment; |
| | | /** |
| | | * 充值完成 |
| | | */ |
| | | -(void)payment; |
| | | /** |
| | | * 点击购买 |
| | | */ |
| | | -(void)initiatedPurchase; |
| | | /** |
| | | * 购买完成 |
| | | */ |
| | | -(void)purchase; |
| | | /** |
| | | * 在线时长 |
| | | * @param type 0->开启,1->关闭 |
| | | */ |
| | | -(void)session:(int)type; |
| | | /** |
| | | * 等级或分数 |
| | | */ |
| | | -(void)levelAchieve; |
| | | /** |
| | | * 加入购物车 |
| | | */ |
| | | -(void)addToCart; |
| | | /** |
| | | * 兴趣标记/愿望 |
| | | */ |
| | | -(void)addToWishlist; |
| | | /** |
| | | * 搜索内容 |
| | | */ |
| | | -(void)search; |
| | | /** |
| | | * 使用信用点消费 |
| | | */ |
| | | -(void)spentCredits; |
| | | /** |
| | | * 完成解锁事件 |
| | | */ |
| | | -(void)achievementUnlocked; |
| | | /** |
| | | * 追踪内容查看事件 |
| | | */ |
| | | -(void)contentView; |
| | | /** |
| | | * 分享事件 |
| | | */ |
| | | -(void)share; |
| | | /** |
| | | * 邀请事件 |
| | | */ |
| | | -(void)invite; |
| | | /** |
| | | * 重新连接到游戏 |
| | | */ |
| | | -(void)reEngage; |
| | | /** |
| | | * 更新游戏 |
| | | */ |
| | | -(void)update; |
| | | /** |
| | | * 打开推送通知 |
| | | */ |
| | | -(void)openedFromPushNotification; |
| | | /** |
| | | * 创建角色 |
| | | */ |
| | | -(void)userCreate; |
| | | /** |
| | | * 用户资料更新 |
| | | */ |
| | | -(void)userInfoUpdate; |
| | | /** |
| | | * 玩家任务统计 |
| | | */ |
| | | -(void)taskUpdate; |
| | | /** |
| | | * 货币状况变更 |
| | | */ |
| | | -(void)goldUpdate; |
| | | /** |
| | | * 用户资料初始化 |
| | | */ |
| | | -(void)userInfoInit; |
| | | /** |
| | | * 导入用户事件 |
| | | */ |
| | | -(void)userImport; |
| | | /** |
| | | * 获取登录方式之前 |
| | | */ |
| | | -(void)initiatedLoginWay; |
| | | /** |
| | | * 获取登录方式之后 |
| | | */ |
| | | -(void)postLoginWay; |
| | | /** |
| | | * 进行登录之前 |
| | | */ |
| | | -(void)initiatedPlatformLogin; |
| | | /** |
| | | * 进行第三方渠道登录之后 |
| | | */ |
| | | -(void)postThirdPartyLogin; |
| | | /** |
| | | * 进行WING平台登录之后 |
| | | */ |
| | | -(void)postWingLogin; |
| | | |
| | | /** |
| | | * 弹出登录框时发送 |
| | | */ |
| | | -(void)postShowLoginWindow; |
| | | /** |
| | | * 自定义事件 |
| | | */ |
| | | -(void)custom; |
| | | |
| | | - (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler; |
| | | |
| | | - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation; |
| | | |
| | | - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options; |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAIUser.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by GHW-T-01 on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import <UIKit/UIKit.h> |
| | | #import "WAUserProxy.h" |
| | | #import <WASdkIntf/WASdkIntf.h> |
| | | @interface WAIUser : NSObject |
| | | -(void)setLoginFlowType:(int)flowType; |
| | | -(int)getLoginFlowType; |
| | | -(WAAppUser*)getAccountInfo; |
| | | -(void)loginWithExtInfo:(NSString *)extInfo delegate:(id<WALoginDelegate>)delegate; |
| | | -(void)logout; |
| | | -(void)bindingAccountWithExtInfo:(NSString*)extInfo delegate:(id<WAAccountBindingDelegate>)delegate; |
| | | -(void)bindingAccountWithPlatform:(NSString *const)platform bindingResult:(WABindingResult*)bindingResult extInfo:(NSString *)extInfo delegate:(id<WAAccountBindingDelegate>)delegate; |
| | | |
| | | -(void)queryBoundAccountWithCompleteBlock:(void(^)(NSError* error,NSArray<WAAccount *>* accounts))block; |
| | | -(void)unBindAccountWithPlatform:(NSString *const)platform platformUserId:(NSString *)pUserId completeBlock:(void (^)(NSError *))completeBlock; |
| | | -(void)switchAccountWithPlatform:(NSString *const)platform completeBlock:(void (^)(NSError *, WALoginResult *))completeBlock; |
| | | -(void)createNewAccountWithCompleteBlock:(void(^)(NSError* error,WALoginResult* result))completeBlock; |
| | | -(void)login:(id<WALoginViewDelegate>)delegate cacheEnabled:(BOOL)cacheEnabled; |
| | | -(void)hide; |
| | | -(void)clearLoginCache; |
| | | -(void)openAccountManager:(id<WAAcctManagerDelegate>)delegate; |
| | | |
| | | -(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions; |
| | | |
| | | -(void)applicationDidBecomeActive:(UIApplication *)application; |
| | | |
| | | -(void)applicationWillEnterForeground:(UIApplication *)application; |
| | | |
| | | -(void)applicationDidEnterBackground:(UIApplication *)application; |
| | | |
| | | -(BOOL)application:(UIApplication *)application |
| | | openURL:(NSURL *)url |
| | | 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; |
| | | |
| | | -(void)setCurrentLoginPlatform:(NSString *const)platform; |
| | | -(NSString*)getCurrentLoginPlatform; |
| | | -(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; |
| | | |
| | | |
| | | /*! |
| | | @discussion 打开idfa弹框授权 status状态与 ATTrackingManagerAuthorizationStatus 一致 |
| | | */ |
| | | - (void)openTTAAuthorizationWithCompletionHandler:(void(^)(NSError* error,NSUInteger status))block; |
| | | |
| | | /*! |
| | | @discussion 隐私协议弹框 |
| | | */ |
| | | - (void)openPrivacyAgreementWindow:(void(^)(NSError* error,NSUInteger status))block; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | //****************************************账号删除有关接口********************************************************************* |
| | | /*! |
| | | @discussion 检测是否可调用玩家身份确认接口 |
| | | */ |
| | | - (BOOL) canCheckIdentity; |
| | | |
| | | |
| | | |
| | | //玩家身份确认接口 |
| | | - (void)identityCheck:(NSString*)realName idCard:(NSString*)idCard completeBlock:(void(^)(NSError* error))block; |
| | | |
| | | //删除账号授权,拿到第三方的token信息,如 signinwithapple拿到authorizationCode |
| | | -(void)deleteAccounAuthorizationWithPlatform:(NSString*)platform completeBlock:(void(^)(NSError* error,WADeleteRequestModel*deleteResult))block; |
| | | |
| | | /*! |
| | | @discussion 账号删除 |
| | | */ |
| | | - (void)requestDeleteAccout:(WADeleteRequestModel*)deleteResult completeBlock:(void(^)(NSError* error,WADeleteResult*result))completeBlock; |
| | | // 取消删除 |
| | | -(void)cancelRequestDeleteAccoutWithUserid:(NSString*)userid callback:(void (^)(NSError *))completeBlock; |
| | | |
| | | |
| | | |
| | | - (void)requestDeleteAccoutUI:(void(^)(NSError *error, NSUInteger status))completeBlock; |
| | | @end |
New file |
| | |
| | | // |
| | | // GHWSdkIapProduct.h |
| | | // GHWSdk |
| | | // |
| | | // Created by GHW-T-01 on 15/5/28. |
| | | // Copyright (c) 2015年 Wuyx. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WAPayChannel.h" |
| | | /*! |
| | | @discussion WAIapProduct 商品类 |
| | | - - - |
| | | */ |
| | | @interface WAIapProduct : NSObject |
| | | @property(nonatomic, strong) NSString *localizedDescription NS_AVAILABLE_IOS(3_0); |
| | | |
| | | @property(nonatomic, strong) NSString *localizedTitle NS_AVAILABLE_IOS(3_0); |
| | | |
| | | @property(nonatomic, strong) NSDecimalNumber *price NS_AVAILABLE_IOS(3_0); |
| | | |
| | | //@property(nonatomic, strong) NSLocale *priceLocale NS_AVAILABLE_IOS(3_0); |
| | | |
| | | @property(nonatomic, strong) NSString *productIdentifier NS_AVAILABLE_IOS(3_0); |
| | | |
| | | // YES if this product has content downloadable using SKDownload |
| | | //@property(nonatomic) BOOL downloadable NS_AVAILABLE_IOS(6_0); |
| | | |
| | | // Sizes in bytes (NSNumber [long long]) of the downloads available for this product |
| | | //@property(nonatomic, strong) NSArray<NSNumber *> *downloadContentLengths NS_AVAILABLE_IOS(6_0); |
| | | |
| | | // Version of the downloadable content |
| | | //@property(nonatomic, strong) NSString *downloadContentVersion NS_AVAILABLE_IOS(6_0); |
| | | // payment method |
| | | @property(nonatomic, strong) NSArray<WAPayChannel *> *payChannels NS_AVAILABLE_IOS(6_0); |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // GhwSdkIapResult.h |
| | | // GHWSdk |
| | | // |
| | | // Created by GHW-T-01 on 15/5/25. |
| | | // Copyright (c) 2015年 Wuyx. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAIapResult 支付结果类 |
| | | - - - |
| | | */ |
| | | @interface WAIapResult : NSObject |
| | | /*! |
| | | @abstract Only set if state is SKPaymentTransactionFailed |
| | | |
| | | Available downloads (SKDownload) for this transaction |
| | | */ |
| | | @property(nonatomic) NSArray *downloads; |
| | | /*! |
| | | @abstract The date when the transaction was added to the server queue. Only valid if state is SKPaymentTransactionStatePurchased or SKPaymentTransactionStateRestored. |
| | | */ |
| | | @property(nonatomic) NSDate *transactionDate; |
| | | /*! |
| | | @abstract The unique server-provided identifier. Only valid if state is SKPaymentTransactionStatePurchased or SKPaymentTransactionStateRestored. |
| | | */ |
| | | @property(nonatomic) NSString *transactionIdentifier; |
| | | /*! |
| | | @abstract Only valid if state is SKPaymentTransactionStatePurchased. |
| | | */ |
| | | @property(nonatomic) NSData *transactionReceipt; |
| | | /*! |
| | | @abstract Identifier agreed upon with the store. Required. |
| | | */ |
| | | @property(nonatomic) NSString *productIdentifier; |
| | | /*! |
| | | @abstract Payment request data agreed upon with the store. Optional. |
| | | */ |
| | | @property(nonatomic) NSData *requestData; |
| | | /*! |
| | | @abstract default: 1. Must be at least 1. |
| | | */ |
| | | @property(nonatomic) NSInteger quantity; |
| | | /*! |
| | | @abstract 基准支付金额 |
| | | */ |
| | | @property(nonatomic) NSString* defaultAmountMicro; |
| | | /*! |
| | | @abstract 基准支付币种 |
| | | */ |
| | | @property(nonatomic) NSString* defaultCurrency; |
| | | /*! |
| | | @abstract 平台服务器自动生成的订单id |
| | | */ |
| | | @property(nonatomic) NSString* orderId; |
| | | /*! |
| | | @abstract 支付结果 |
| | | */ |
| | | @property(nonatomic) long resultCode; |
| | | |
| | | @property (nonatomic) NSString *message; //成功 or 失败原因 |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // GHWLoginResult.h |
| | | // GHWSdk |
| | | // |
| | | // Created by wuyx on 15/5/6. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion 该类为登录结果 |
| | | - - - |
| | | */ |
| | | @interface WALoginResult : NSObject<NSCoding,NSCopying> |
| | | /*! |
| | | @abstract 状态码 |
| | | */ |
| | | @property(copy,nonatomic)NSString *code; |
| | | /*! |
| | | @abstract 结果描述 |
| | | */ |
| | | @property(copy,nonatomic)NSString *msg; |
| | | /*! |
| | | @abstract 用户Id,(注册)登录成功的时候返回 |
| | | */ |
| | | @property(copy,nonatomic)NSString *userId; |
| | | /*! |
| | | @abstract 在线token,(注册)登录成功的时候返回,如果传入的token未过期,直接返回原来的token,否则返回更新后的token |
| | | */ |
| | | @property(copy,nonatomic)NSString *token; |
| | | /*! |
| | | @abstract 用户在第三方平台的Id,GUEST登录时 值与userId一致 |
| | | */ |
| | | @property(copy,nonatomic)NSString *pUserId; |
| | | /*! |
| | | @abstract 平台 |
| | | */ |
| | | @property(copy,nonatomic)NSString *platform; |
| | | /*! |
| | | @abstract 第三方平台token(当GUEST登录时为空,当Apple登录时,实际上是将extends转化为NSString) |
| | | */ |
| | | @property(copy,nonatomic)NSString *pToken; |
| | | |
| | | /*! |
| | | @abstract 第三方平台的刷新refresh_token,如微信 |
| | | */ |
| | | @property(copy,nonatomic)NSString *refresh_token; |
| | | |
| | | /*! |
| | | @abstract 当APPLE登录时有值,否则为空 |
| | | */ |
| | | @property(strong,nonatomic)NSDictionary *extends;//当APPLE登录时有值,否则为空 |
| | | /**! |
| | | @abstract 是否绑定手机号 |
| | | */ |
| | | @property BOOL isBindMobile; |
| | | /**! |
| | | @abstract 用户实名认证状态(未开启则不返回): |
| | | * 0:已实名 |
| | | * 1:未实名 |
| | | * 2:已实名-未成年(废弃) |
| | | 3:认证中 |
| | | */ |
| | | @property NSInteger userRealNameStatus; |
| | | |
| | | |
| | | /**! |
| | | @abstract 是否开启游戏防沉迷(未开启则无数据返回) |
| | | * 1:开启 |
| | | */ |
| | | @property NSInteger gameAddiction; |
| | | |
| | | |
| | | |
| | | /**! |
| | | @abstract 已实名认证用户的年龄(未开启则无数据返回) |
| | | */ |
| | | @property NSInteger age; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /**! |
| | | @abstract 登录实名验证: v1.4.0 废弃 |
| | | * 0:不需要实名验证 |
| | | * 1:提示用户实名验证,这里返回的token可作为登录及用户实名验证使用 |
| | | * 2:强制用户实名验证,此时返回的仅是token是实名验证token |
| | | */ |
| | | //@property NSInteger loginRna; |
| | | |
| | | /**! |
| | | @abstract 支付实名验证: v1.4.0 废弃 |
| | | * 0:不需要实名验证 |
| | | * 1:提示用户实名验证 |
| | | * 2:强制用户实名验证 |
| | | * 注:当有该字段返回时,token可作为登录及用户实名验证使用 |
| | | */ |
| | | //@property NSInteger paymentRna; |
| | | |
| | | |
| | | |
| | | /**! |
| | | @abstract 当前用户ID含义标识: |
| | | * 0:原账号 |
| | | * 1:被绑账号 |
| | | */ |
| | | @property (strong,nonatomic) NSString *userFlag; |
| | | /**! |
| | | @abstract 是否被绑定用户 |
| | | * |
| | | */ |
| | | @property BOOL isBindUser; |
| | | |
| | | /**! sdk 内部使用 |
| | | @abstract 游客账号绑标示(仅游客登录返回 0-未绑定过账户 1 绑定过1个或者多个账号) |
| | | */ |
| | | @property NSInteger isBindAccount; |
| | | |
| | | |
| | | // cp 使用 |
| | | @property int isGuestAccount; // 0 不是游客账号 1是游客账号 |
| | | |
| | | |
| | | -(id)initWithPUserId:(NSString*)userId pToken:(NSString*)token platform:(NSString*)platform; |
| | | +(id)loginResultWithPUserId:(NSString*)userId pToken:(NSString*)token platform:(NSString*)platform; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAParamConfigObj.h |
| | | // WASDKUI |
| | | // |
| | | // Created by wuyx on 15/11/25. |
| | | // Copyright © 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @interface WAParamConfigObj : NSObject<NSCoding,NSCopying> |
| | | @property(nonatomic)BOOL enableExtend; |
| | | @property(nonatomic)BOOL enableHotPatch; |
| | | @property(nonatomic,copy)NSString* afadAppKey; |
| | | @property(nonatomic,copy)NSString* fbSecretKey; |
| | | @property(nonatomic,copy)NSString* rewardType; |
| | | @property(nonatomic)float reorderLimitTime; |
| | | @property(nonatomic) NSInteger paymentReportTime; |
| | | @property(nonatomic) float heartbeatIntervalTime; |
| | | @property(nonatomic)int eventCacheNumberLimit; |
| | | @property(nonatomic)int eventCacheTimeLimit; |
| | | @property(nonatomic,copy)NSString* eventTypeImmediate; |
| | | @property(nonatomic,strong)NSNumber* enableNewAccount; |
| | | @property(nonatomic,strong)NSNumber* enableChangeAccount; |
| | | @property(nonatomic,strong)NSNumber* isTestDevice; |
| | | @property(nonatomic,copy)NSString* userAgreementUrl; |
| | | @property(nonatomic,strong)NSNumber* uploadPurchaseLog; |
| | | @property(nonatomic) NSInteger adVideoCacheCount; |
| | | @property(nonatomic) NSInteger enableBindAccount; // 绑定: 0-关闭, 1-打开 2-强制绑定(国内) |
| | | @property(nonatomic) NSInteger enableUnBindAccount; // 解绑: 0-关闭,1-打开 |
| | | @property(nonatomic,copy)NSString* privacyUrl; // 隐私协议url |
| | | @property(nonatomic,copy)NSString* privacyUpdateTime; // 用户协议更新时间 |
| | | @property(nonatomic,copy)NSString* userPolicyUrl; // 用户协议 |
| | | @property(nonatomic,copy)NSString* childPrivacyUrl; // 儿童隐私协议地址 |
| | | |
| | | |
| | | |
| | | @property(nonatomic)NSInteger userCenterStatus; // 用户中心状态 0-关闭,1-打开 |
| | | @property(nonatomic)NSInteger isRechargeCenterPay; // 是否开启充值中心支付:0-关闭,1-打开,2-仅安卓打开,3-仅IOS打开 |
| | | @property(nonatomic,copy)NSString* rechargeCenterIcon; // 充值中心的支付图片URL |
| | | @property(nonatomic)NSInteger isOpenKefu; // 是否开启客服 0 关闭 1 启动机器人客服聊天界面 2 启动人工客服聊天界面 3 启动运营界面 4 展示全部FAQ菜单 5 展示全部FAQ菜单(无机器人客服) |
| | | @property (nonatomic, copy) NSDictionary *paymentTip; //付款信息提示 (complete:提示语字段的key) |
| | | @property(nonatomic)NSInteger logEventControl; // 事件日志开关 0 关闭 1 全部打开 2 仅android打开 3 仅ios打开 |
| | | @property(nonatomic)NSInteger loginRna; // 0 - 关闭,登录后不弹实名认证。 1 - 开启并强制 2开启不强制 |
| | | @property(nonatomic)NSInteger paymentRna; // 0 - 关闭,下单前不弹出实名认证。 1 - 开启并强制 2开启不强制 |
| | | |
| | | @property(nonatomic)NSInteger autoGuestLogin; // 游客自动登录开关 0 - 开启, 1 - 关闭 |
| | | @property(nonatomic)NSInteger guestLoginBindAlert; // 游客登录绑定提醒 0 - 关闭, 1 - 开启 |
| | | |
| | | @property (nonatomic)NSInteger isOpenAccountDelete; // 账号注销总开关 (0-关闭, 1-ALL, 2-仅Android 3-仅iOS) |
| | | @property (nonatomic)NSInteger accountDeleteBufferDays; // 账号注销缓存天数 (默认 15) |
| | | @property (nonatomic)NSInteger deletingAccountRemind; // 账号注销提醒开关.(0-关闭, 1-开启, 默认关闭) 开启后,当注销中用户登录时,SDK弹出取消注销账号提醒,如用户取消,则SDK自动调用取消删除账号接口 |
| | | @property(nonatomic,copy)NSString* deleteAccountProtocolURL; // 删除账号协议 |
| | | |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAPayChannel.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by hank on 16/4/28. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // 支付渠道 |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @interface WAPayChannel : NSObject |
| | | |
| | | @property (nonatomic, strong) NSString *channelProductId; // 支付渠道平台产品编号 |
| | | @property (nonatomic, assign) NSInteger payChannelId; // 支付方式编号 |
| | | @property (nonatomic, strong) NSString *payChannelName; // 支付方式名称 如APPLE 、GOOGLE |
| | | @property (nonatomic, assign) NSInteger payMethod; // 支付方式 1 native、2 webview |
| | | @property (nonatomic, assign) NSInteger status; // 状态 -1 关闭 1 打开 |
| | | @property (nonatomic, strong) NSString *logoUrl; // 支付方式图标下载地址 |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAPayProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by GHW-T-01 on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WAIPay.h" |
| | | @class WAIapProduct,WAIapResult,WAChannelProduct; |
| | | |
| | | /*! |
| | | @discussion 查询商品库存协议 |
| | | - - - |
| | | */ |
| | | @protocol WAInventoryDelegate <NSObject> |
| | | @required |
| | | /*! |
| | | @abstract 查询成功 |
| | | @param Inventory 是一个数组,保存着WAIapProduct类型的实例 |
| | | */ |
| | | -(void)queryInventoryDidCompleteWithResult:(NSArray<WAIapProduct *>*)Inventory; |
| | | /*! |
| | | @abstract 查询失败 |
| | | @param error 错误 |
| | | */ |
| | | -(void)queryInventoryDidFailWithError:(NSError*)error; |
| | | @end |
| | | /*! |
| | | @discussion 支付协议 |
| | | - - - |
| | | */ |
| | | @protocol WAPaymentDelegate <NSObject> |
| | | /*! |
| | | @abstract 支付成功 |
| | | @param iapResult 支付结果 |
| | | @param platform 支付平台 |
| | | */ |
| | | -(void)paymentDidCompleteWithResult:(WAIapResult*)iapResult andPlatform:(NSString*)platform; |
| | | /*! |
| | | @abstract 支付失败 |
| | | @param error 错误 |
| | | @param platform 支付平台 |
| | | */ |
| | | -(void)paymentDidFailWithError:(NSError*)error andPlatform:(NSString*)platform; |
| | | @end |
| | | |
| | | /*! |
| | | @discussion WAPayProxy 是支付模块的代理类。 |
| | | - - - |
| | | */ |
| | | @interface WAPayProxy : NSObject |
| | | /*! |
| | | @abstract 应用内支付初始化 |
| | | */ |
| | | +(void)init4Iap; |
| | | /*! |
| | | @abstract 查询商品列表调用方法 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)queryInventoryWithDelegate:(id<WAInventoryDelegate>)delegate; |
| | | |
| | | /*! |
| | | @abstract 查询渠道商品调用方法 |
| | | @param callBackBlock 回调 |
| | | */ |
| | | + (void)queryChannelProduct:(NSString *)channel |
| | | callBackBlock:(void(^)(NSArray <WAChannelProduct *>*channelProductsArray,NSError *error))callBackBlock; |
| | | |
| | | |
| | | /*! |
| | | @abstract 支付某个商品 |
| | | @param productId 商品id |
| | | @param extInfo 扩展信息 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)payWithProductId:(NSString*)productId extInfo:(NSString*)extInfo delegate:(id<WAPaymentDelegate>)delegate; |
| | | /*! |
| | | @abstract 查询是否支持支付 |
| | | @return bool 是否支持支付 |
| | | */ |
| | | +(BOOL)isPayServiceAvailable; |
| | | |
| | | +(void)payLog:(NSString *)logInfo; |
| | | |
| | | |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WAPushProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by hank on 2017/4/1. |
| | | // Copyright © 2017年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WAIPush.h" |
| | | |
| | | @interface WAPushProxy : NSObject |
| | | |
| | | // 注册通知 |
| | | + (void)application:(UIApplication *)application initPushWithDelegate:(id<UNUserNotificationCenterDelegate>)delegate; |
| | | |
| | | // 调用过用户注册通知方法之后执行 |
| | | + (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings; |
| | | |
| | | // 获取deviceToken |
| | | + (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken; |
| | | |
| | | // 注册失败 |
| | | + (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error; |
| | | |
| | | #pragma mark IOS8 IOS9 Push Notification Receive |
| | | // 接收本地通知 |
| | | + (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification; |
| | | // 接收远程通知 |
| | | + (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler; |
| | | |
| | | #pragma mark IOS10 Push Notification Receive |
| | | //App处于前台接收通知时 |
| | | + (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler; |
| | | |
| | | // 通知的点击事件 |
| | | + (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler; |
| | | |
| | | // 程序进入后台 |
| | | + (void)applicationDidEnterBackground:(UIApplication *)application; |
| | | |
| | | // 程序将进入前台 |
| | | + (void)applicationWillEnterForeground:(UIApplication *)application; |
| | | |
| | | // 程序进入前台 |
| | | + (void)applicationDidBecomeActive:(UIApplication *)application; |
| | | |
| | | @end |
New file |
| | |
| | | // |
| | | // WASdkIntf.h |
| | | // WASdkIntf |
| | | // |
| | | // Created by wuyx on 16/3/2. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <WASdkIntf/WAICsc.h> |
| | | #import <WASdkIntf/WACscProxy.h> |
| | | #import <WASdkIntf/WAIAd.h> |
| | | #import <WASdkIntf/WAAdProxy.h> |
| | | #import <WASdkIntf/WAIPush.h> |
| | | #import <WASdkIntf/WAPushProxy.h> |
| | | #import <WASdkIntf/WAIApw.h> |
| | | #import <WASdkIntf/WAApwProxy.h> |
| | | #import <WASdkIntf/WAConstants.h> |
| | | #import <WASdkIntf/WAComponent.h> |
| | | #import <WASdkIntf/WACore.h> |
| | | #import <WASdkIntf/WACoreProxy.h> |
| | | #import <WASdkIntf/WAParamConfigObj.h> |
| | | #import <WASdkIntf/WAIHup.h> |
| | | #import <WASdkIntf/WAHupProxy.h> |
| | | #import <WASdkIntf/WAUpdateInfo.h> |
| | | #import <WASdkIntf/WAIPay.h> |
| | | #import <WASdkIntf/WAPayProxy.h> |
| | | #import <WASdkIntf/WAIapProduct.h> |
| | | #import <WASdkIntf/WAChannelProduct.h> |
| | | #import <WASdkIntf/WAPayChannel.h> |
| | | #import <WASdkIntf/WAIapResult.h> |
| | | #import <WASdkIntf/WAISocial.h> |
| | | #import <WASdkIntf/WAGroup.h> |
| | | #import <WASdkIntf/WASocialProxy.h> |
| | | #import <WASdkIntf/WAEvent.h> |
| | | #import <WASdkIntf/WAITrack.h> |
| | | #import <WASdkIntf/WATrackProxy.h> |
| | | #import <WASdkIntf/WABindingResult.h> |
| | | #import <WASdkIntf/WALoginResult.h> |
| | | #import <WASdkIntf/WAUserCenterResult.h> |
| | | #import <WASdkIntf/WAIUser.h> |
| | | #import <WASdkIntf/WAUserProxy.h> |
| | | #import <WASdkIntf/WACertificationInfo.h> |
| | | #import <WASdkIntf/WAAccount.h> |
| | | #import <WASdkIntf/WAClassGenerator.h> |
| | | #import <WASdkIntf/WAShareVideo.h> |
| | | #import <WASdkIntf/WAShareVideoContent.h> |
| | | #import <WASdkIntf/WASharePhoto.h> |
| | | #import <WASdkIntf/WASharePhotoContent.h> |
| | | #import <WASdkIntf/WAShareLinkContent.h> |
| | | #import <WASdkIntf/WASharingContent.h> |
| | | #import <WASdkIntf/WAAppInviteDialog.h> |
| | | #import <WASdkIntf/WAAppInviteContent.h> |
| | | #import <WASdkIntf/WAFBAppRequest.h> |
| | | #import <WASdkIntf/WAFBObject.h> |
| | | #import <WASdkIntf/WAAppUser.h> |
| | | #import <WASdkIntf/WAFBApplication.h> |
| | | #import <WASdkIntf/WAGameRequestContent.h> |
| | | #import <WASdkIntf/WAGameRequestDialog.h> |
| | | #import <WASdkIntf/WACode.h> |
| | | #import <WASdkIntf/WAError.h> |
| | | #import <WASdkIntf/WAErrorCode.h> |
| | | #import <WASdkIntf/WASdkIntf.h> |
| | | #import <WASdkIntf/WADeleteRequestModel.h> |
| | | #import <WASdkIntf/WADeleteResult.h> |
| | | |
| | | //! Project version number for WASdkIntf. |
| | | FOUNDATION_EXPORT double WASdkIntfVersionNumber; |
| | | |
| | | //! Project version string for WASdkIntf. |
| | | FOUNDATION_EXPORT const unsigned char WASdkIntfVersionString[]; |
| | | |
| | | // In this header, you should import all the public headers of your framework using statements like #import <WASdkIntf/PublicHeader.h> |
| | | |
| | | //time:2022/06/20 09:15 ver:3.10.0 |
New file |
| | |
| | | // |
| | | // GHWSDKFBShareLinkContent.h |
| | | // GHWSdkUI |
| | | // |
| | | // Created by wuyx on 15/6/15. |
| | | // Copyright (c) 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WASharingContent.h" |
| | | /*! |
| | | @discussion WAFBShareLinkContent |
| | | - - - |
| | | */ |
| | | @interface WAShareLinkContent : NSObject<WASharingContent> |
| | | /*! |
| | | @abstract The description of the link. |
| | | @discussion If not specified, this field is automatically populated by information scraped from the contentURL, |
| | | typically the title of the page. This value may be discarded for specially handled links (ex: iTunes URLs). |
| | | @return The description of the link |
| | | */ |
| | | @property (nonatomic, copy) NSString *contentDescription; |
| | | |
| | | /*! |
| | | @abstract The title to display for this link. |
| | | @discussion This value may be discarded for specially handled links (ex: iTunes URLs). |
| | | @return The link title |
| | | */ |
| | | @property (nonatomic, copy) NSString *contentTitle; |
| | | |
| | | /*! |
| | | @abstract The URL of a picture to attach to this content. |
| | | @return The network URL of an image |
| | | */ |
| | | @property (nonatomic, copy) NSURL *imageURL; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBSharePhoto.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import <UIKit/UIKit.h> |
| | | /*! |
| | | @discussion WAFBSharePhoto |
| | | - - - |
| | | */ |
| | | @interface WASharePhoto : NSObject |
| | | /*! |
| | | @abstract If the photo is resident in memory, this method supplies the data. |
| | | @return UIImage representation of the photo |
| | | */ |
| | | @property (nonatomic, strong) UIImage *image; |
| | | |
| | | /*! |
| | | @abstract The URL to the photo. |
| | | @return URL that points to a network location or the location of the photo on disk |
| | | */ |
| | | @property (nonatomic, copy) NSURL *imageURL; |
| | | |
| | | /*! |
| | | @abstract Specifies whether the photo represented by the receiver was generated by the user or by the application. |
| | | @return YES if the photo is user-generated, otherwise NO |
| | | */ |
| | | @property (nonatomic, assign) BOOL userGenerated; |
| | | |
| | | |
| | | /*! |
| | | @abstract The user generated caption for the photo. Note that the 'caption' must come from |
| | | * the user, as pre-filled content is forbidden by the Platform Policies (2.3). |
| | | @return the Photo's caption if exists else returns null. |
| | | */ |
| | | @property (nonatomic, copy) NSString *caption; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBSharePhotoContent.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WASharingContent.h" |
| | | /*! |
| | | @discussion WAFBSharePhotoContent |
| | | - - - |
| | | */ |
| | | @interface WASharePhotoContent : NSObject<WASharingContent> |
| | | /*! |
| | | @abstract Photos to be shared. |
| | | @return Array of the photos (WAFBSharePhoto) |
| | | */ |
| | | @property (nonatomic, copy) NSArray *photos; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBShareVideo.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAFBShareVideo |
| | | - - - |
| | | */ |
| | | @interface WAShareVideo : NSObject |
| | | /*! |
| | | @abstract The file URL to the video. |
| | | @return URL that points to the location of the video on disk |
| | | */ |
| | | @property (nonatomic, copy) NSURL *videoURL; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBShareVideoContent.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import "WASharingContent.h" |
| | | #import "WASharePhoto.h" |
| | | #import "WAShareVideo.h" |
| | | /*! |
| | | @discussion WAFBShareVideoContent |
| | | - - - |
| | | */ |
| | | @interface WAShareVideoContent : NSObject<WASharingContent> |
| | | /*! |
| | | @abstract The photo that represents the video. |
| | | @return The photo |
| | | */ |
| | | @property (nonatomic, strong) WASharePhoto *previewPhoto; |
| | | |
| | | /*! |
| | | @abstract The video to be shared. |
| | | @return The video |
| | | */ |
| | | @property (nonatomic, strong) WAShareVideo *video; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAFBShareContent.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 16/3/15. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @protocol WASharingContent |
| | | |
| | | /*! |
| | | @abstract URL for the content being shared. |
| | | @discussion This URL will be checked for all link meta tags for linking in platform specific ways. See documentation |
| | | for App Links (https://developers.facebook.com/docs/applinks/) |
| | | @return URL representation of the content link |
| | | */ |
| | | @property (nonatomic, strong) NSURL *contentURL; |
| | | |
| | | /*! |
| | | @abstract List of IDs for taggable people to tag with this content. |
| | | @description See documentation for Taggable Friends |
| | | (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) |
| | | @return Array of IDs for people to tag (NSString) |
| | | */ |
| | | @property (nonatomic, strong) NSArray *peopleIDs; |
| | | |
| | | /*! |
| | | @abstract The ID for a place to tag with this content. |
| | | @return The ID for the place to tag |
| | | */ |
| | | @property (nonatomic, strong) NSString *placeID; |
| | | |
| | | /*! |
| | | @abstract A value to be added to the referrer URL when a person follows a link from this shared content on feed. |
| | | @return The ref for the content. |
| | | */ |
| | | @property (nonatomic, strong) NSString *ref; |
| | | |
| | | @end |
| | | |
New file |
| | |
| | | // |
| | | // WASocialProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by GHW-T-01 on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | @protocol WASharingDelegate,WASharingContent,WAAppInviteDialogDelegate,WAGameRequestDialogDelegate; |
| | | @class WAAppInviteContent,WAGameRequestContent,WAAppUser,WAFBObject,WAFBAppRequest; |
| | | /*! |
| | | @discussion The common interface for components that initiate sharing. |
| | | */ |
| | | @protocol WASharing <NSObject> |
| | | |
| | | /*! |
| | | @abstract The receiver's delegate or nil if it doesn't have a delegate. |
| | | */ |
| | | @property (nonatomic, weak) NSObject<WASharingDelegate>* delegate; |
| | | |
| | | /*! |
| | | @abstract The content to be shared. |
| | | */ |
| | | @property (nonatomic, strong) NSObject<WASharingContent>* shareContent; |
| | | |
| | | /*! |
| | | @abstract A Boolean value that indicates whether the receiver should fail if it finds an error with the share content. |
| | | @discussion If NO, the sharer will still be displayed without the data that was mis-configured. For example, an |
| | | invalid placeID specified on the shareContent would produce a data error. |
| | | */ |
| | | @property (nonatomic, assign) BOOL shouldFailOnDataError; |
| | | |
| | | |
| | | @end |
| | | |
| | | /*! |
| | | @discussion The common interface for dialogs that initiate sharing. |
| | | - - - |
| | | */ |
| | | @protocol WASharingDialog <WASharing> |
| | | |
| | | /*! |
| | | @abstract A Boolean value that indicates whether the receiver can initiate a share. |
| | | @discussion May return NO if the appropriate Facebook app is not installed and is required or an access token is |
| | | required but not available. This method does not validate the content on the receiver, so this can be checked before |
| | | building up the content. |
| | | @see [WASharing validateWithError:] |
| | | @result YES if the receiver can share, otherwise NO. |
| | | */ |
| | | - (BOOL)canShow; |
| | | |
| | | /*! |
| | | @abstract Shows the dialog. |
| | | @result YES if the receiver was able to begin sharing, otherwise NO. |
| | | */ |
| | | - (BOOL)show; |
| | | |
| | | @end |
| | | |
| | | /*! |
| | | @abstract A delegate for WASharing. |
| | | @discussion The delegate is notified with the results of the sharer as long as the application has permissions to |
| | | receive the information. For example, if the person is not signed into the containing app, the sharer may not be able |
| | | to distinguish between completion of a share and cancellation. |
| | | */ |
| | | @protocol WASharingDelegate <NSObject> |
| | | |
| | | /*! |
| | | @abstract Sent to the delegate when the share completes without error or cancellation. |
| | | @param sharer The WASharing that completed. |
| | | @param platform The platform that the sharing from |
| | | @param results The results from the sharer. This may be nil or empty. |
| | | */ |
| | | - (void)sharer:(NSObject<WASharing>*)sharer platform:(NSString *const)platform didCompleteWithResults:(NSDictionary *)results; |
| | | |
| | | /*! |
| | | @abstract Sent to the delegate when the sharer encounters an error. |
| | | @param sharer The WASharing that completed. |
| | | @param platform The platform that the sharing from |
| | | @param error The error. |
| | | */ |
| | | - (void)sharer:(NSObject<WASharing>*)sharer platform:(NSString *const)platform didFailWithError:(NSError *)error; |
| | | |
| | | /*! |
| | | @abstract Sent to the delegate when the sharer is cancelled. |
| | | @param sharer The WASharing that completed. |
| | | @param platform The platform that the sharing from |
| | | */ |
| | | - (void)sharerDidCancel:(NSObject<WASharing>*)sharer platform:(NSString *const)platform; |
| | | @end |
| | | |
| | | /*! |
| | | @discussion WASocialProxy 该类用来做分享、游戏邀请、收发礼物等。 |
| | | - - - |
| | | */ |
| | | @interface WASocialProxy : NSObject |
| | | /*! |
| | | #分享调用方法 |
| | | */ |
| | | /*! |
| | | @abstract 分享调用方法 |
| | | @param platform 平台 |
| | | @param shareContent 分享内容 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)shareWithPlatform:(NSString *const)platform shareContent:(NSObject<WASharingContent>*)shareContent shareWithUI:(BOOL)shareWithUI delegate:(NSObject<WASharingDelegate>*)delegate; |
| | | /*! |
| | | @abstract 应用邀请调用方法 |
| | | @param content 内容 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)appInviteWithPlatform:(NSString *const)platform Content:(WAAppInviteContent*)content delegate:(NSObject<WAAppInviteDialogDelegate>*)delegate; |
| | | /*! |
| | | @abstract Game Service - 获取可邀请好友列表 |
| | | @param duration 邀请有效时段,既是邀请好友成功之后,该好友在有效时段之内,不会再出现在可邀请好友列表之中.单位为分钟,不设置默认为0. |
| | | @param platform 平台 |
| | | @param block 回调 |
| | | */ |
| | | +(void)queryInvitableFriendsWithDuration:(float)duration platform:(NSString *const)platform completeBlock:(void(^)(NSArray* friends,NSError *error))block; |
| | | /*! |
| | | @abstract Game Service - 向好友发送邀请 |
| | | @param content 内容 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)gameInviteWithPlatform:(NSString *const)platform Content:(WAGameRequestContent*)content delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | /*! |
| | | @abstract Game Service - 查询赠送/索要礼物的好友列表 |
| | | @param platform 平台 |
| | | @param block 回调 |
| | | */ |
| | | +(void)queryFriendsWithPlatform:(NSString *const)platform completeBlock:(void(^)(NSArray* friends,NSError *error))block ; |
| | | /*! |
| | | @abstract 获取当前App所属的group |
| | | @param platform 平台 |
| | | @param block 回调 |
| | | */ |
| | | +(void)getCurrentAppLinkedGroupWithPlatfrom:(NSString *const)platform extInfo:(NSString*)extInfo completeBlock:(void(^)(NSArray* groups,NSError* error))block; |
| | | /*! |
| | | @abstract 获取当前user所属的group |
| | | @param platform 平台 |
| | | @param block 回调 |
| | | */ |
| | | +(void)getCurrentUserGroupWithPlatfrom:(NSString *const)platform extInfo:(NSString*)extInfo completeBlock:(void(^)(NSArray* groups,NSError* error))block; |
| | | |
| | | /*! |
| | | @abstract 根据groupId查询对应的group |
| | | @param platform 平台 |
| | | @param groupIds groupId数组 |
| | | @param block 回调 |
| | | */ |
| | | +(void)getGroupWithPlatform:(NSString *const)platform groupIds:(NSArray*)groupIds extInfo:(NSString*)extInfo completeBlock:(void(^)(NSArray* groups,NSError* error))block; |
| | | |
| | | /*! |
| | | @abstract 返回当前应用推荐的所有group |
| | | @param platform 平台 |
| | | @param extInfo 扩展字段 |
| | | @param block 回调 |
| | | */ |
| | | +(void)getGroupsWithPlatform:(NSString *const)platform extInfo:(NSString*)extInfo completeBlock:(void(^)(NSArray* groups,NSError* error))block; |
| | | |
| | | /*! |
| | | @abstract 加入group |
| | | @param platform 平台 |
| | | @param groupId group标识 |
| | | @param extInfo 扩展信息 |
| | | @param block 回调 |
| | | */ |
| | | +(void)joinGroupWithPlatform:(NSString *const)platform groupId:(NSString*)groupId extInfo:(NSString *const)extInfo completeBlock:(void(^)(NSError* error))block; |
| | | |
| | | /*! |
| | | @abstract 打开group |
| | | @param platform 平台 |
| | | @param groupUri 组Uri |
| | | @param extInfo 扩展信息 |
| | | */ |
| | | +(void)openGroupPageWithPlatform:(NSString *const)platform groupUri:(NSString *const)groupUri extInfo:(NSString*)extInfo; |
| | | |
| | | /*! |
| | | @abstract Game Service - 查询礼物列表 |
| | | @param objectType 内容 |
| | | @param block 回调 |
| | | */ |
| | | +(void)queryFBGraphObjectsWithObjectType:(NSString*)objectType completeBlock:(void(^)(NSArray<WAFBObject*>* objects,NSError *error))block; |
| | | /*! |
| | | @abstract Game Service - 赠送礼物 |
| | | @param content 内容 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)fbSendGiftWithContent:(WAGameRequestContent*)content delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | |
| | | /*! |
| | | @abstract Game Service - 索要礼物 |
| | | @param content 内容 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)fbAskForGiftWithContent:(WAGameRequestContent*)content delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | /*! |
| | | @abstract Game Service - 查看收到的礼物 |
| | | @param block 回调 |
| | | */ |
| | | +(void)fbQueryReceivedGiftsWithCompleteBlock:(void(^)(NSArray<WAFBAppRequest *>* gifts,NSError *error))block; |
| | | /*! |
| | | @abstract Game Service - 查看好友向自己索要礼物请求 |
| | | @param block 回调 |
| | | */ |
| | | +(void)fbQueryAskForGiftRequestsWithCompleteBlock:(void(^)(NSArray<WAFBAppRequest *>* requests,NSError *error))block; |
| | | /*! |
| | | @abstract Game Service - 删除请求 |
| | | @param block 回调 |
| | | */ |
| | | +(void)fbDeleteRequestWithRequestId:(NSString*)requestId completeBlock:(void(^)(id result,NSError *error))block; |
| | | |
| | | |
| | | /*! |
| | | @abstract 此方法用来取代gameInviteWithPlatform,fbSendGiftWithContent,fbAskForGiftWithContent |
| | | @param platform 平台 |
| | | @param requestType 请求类型 |
| | | @param title 标题 |
| | | @param message 信息 |
| | | @param objectId 对象id |
| | | @param receiptIds 接受者id |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)sendRequestWithPlatform:(NSString *const)platform requestType:(NSString *const)requestType title:(NSString*)title message:(NSString*)message objectId:(NSString*)objectId receiptIds:(NSArray*)receiptIds delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | |
| | | /*! |
| | | @abstract 此方法用来取代gameInviteWithPlatform,fbSendGiftWithContent,fbAskForGiftWithContent |
| | | @param platform 平台 |
| | | @param requestType 请求类型 |
| | | @param title 标题 |
| | | @param message 信息 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)sendRequestWithPlatform:(NSString *const)platform requestType:(NSString *const)requestType title:(NSString*)title message:(NSString*)message delegate:(NSObject<WAGameRequestDialogDelegate>*)delegate; |
| | | |
| | | /*! |
| | | @abstract 下面的三个方法是关于奖励机制的,邀请奖励,自定义奖励事件 |
| | | @discussion 此方法用来提交Facebook邀请信息 |
| | | @param platform 平台 |
| | | @param results 这是发完邀请请求成功在WAGameRequestDialogDelegate的方法:[- (void)gameRequestDialog:(WAGameRequestDialog *)gameRequestDialog platform:(NSString *const)platform didCompleteWithResults:(NSDictionary *)results]的results |
| | | @param handler 回调block 当code为200时成功 |
| | | */ |
| | | +(void)createInviteInfoWithPlatform:(NSString *const)platform results:(NSDictionary*)results handler:(void (^)(NSUInteger code,NSString* msg, NSError* error)) handler; |
| | | /*! |
| | | @discussion 触发Facebook被邀请人安装应用事件接口。在玩家登录facebook或者用facebook账号绑定的时候可以触发安装事件 |
| | | @param platform 平台 |
| | | @param tokenString facebook accesstoken |
| | | @param handler 回调block 当code为200时成功 |
| | | */ |
| | | +(void)inviteInstallRewardPlatform:(NSString *const)platform TokenString:(NSString*)tokenString handler:(void (^)(NSUInteger code,NSString* msg, NSError* error)) handler; |
| | | /*! |
| | | @discussion 发送Facebook邀请奖励事件统计接口 |
| | | @param platform 平台 |
| | | @param eventName 奖励事件名称 |
| | | @param handler 回调block 当code为200时成功 |
| | | */ |
| | | +(void)inviteEventRewardWithPlatform:(NSString *const)platform eventName:(NSString*)eventName handler:(void (^)(NSUInteger code,NSString* msg, NSError* error)) handler; |
| | | @end |
| | | |
New file |
| | |
| | | // |
| | | // WATrackProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by WA-T-01 on 16/3/1. |
| | | // Copyright © 2016年 WA-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | //数据类型 |
| | | typedef enum WAParameterType{ |
| | | WAParameterTypeString, |
| | | WAParameterTypeInt, |
| | | WAParameterTypeDouble, |
| | | WAParameterTypeBool, |
| | | WAParameterTypeEnumThree, |
| | | WAParameterTypeData |
| | | }WAParameterType; |
| | | |
| | | //支付类型 |
| | | //typedef enum WAEnumPaymentType{ |
| | | // WAEnumPaymentTypeGoogle, |
| | | // WAEnumPaymentTypeApple, |
| | | // WAEnumPaymentTypeFree |
| | | //}WAEnumPaymentType; |
| | | |
| | | //性别 |
| | | typedef enum WAEnumGender{ |
| | | WAEnumGenderFemale, |
| | | WAEnumGenderMale, |
| | | WAEnumGenderUnknown |
| | | }WAEnumGender; |
| | | |
| | | //levelType |
| | | typedef enum WALevelType{ |
| | | // Highest level reached |
| | | WALevelTypeHighestLevelReached = 1, |
| | | // Current area level reached |
| | | WALevelTypeCurrentArea = 2, |
| | | // Current character level reached |
| | | WALevelTypeCharacterLevel = 3, |
| | | // Other sequential level reached |
| | | WALevelTypeOtherSequential = 4, |
| | | // Current non sequential level reached |
| | | WALevelTypeOtherNonsequential = 5 |
| | | |
| | | } WALevelType; |
| | | |
| | | |
| | | |
| | | |
| | | extern NSString* WAEventParameterNameCustomMethodPrefix;//自定义事件名称前缀 |
| | | |
| | | |
| | | extern NSString* WAEventParameterNameApplePayLogCustomPrefix;//苹果支付自定义事件名称前缀 |
| | | |
| | | |
| | | extern NSString *const WAEventLaunch; |
| | | extern NSString *const WAEventStartUp; |
| | | extern NSString *const WAEventCompleteRegistration; |
| | | extern NSString *const WAEventLogin; |
| | | extern NSString *const WAEventInitiatedPayment; |
| | | extern NSString *const WAEventPayment; |
| | | extern NSString *const WAEventInitiatedPurchase; |
| | | extern NSString *const WAEventPurchase; |
| | | extern NSString *const WAEventLevelAchieved; |
| | | extern NSString *const WAEventAddToCart; |
| | | extern NSString *const WAEventAddToWishlist; |
| | | extern NSString *const WAEventSearch; |
| | | extern NSString *const WAEventSpentCredits; |
| | | extern NSString *const WAEventAchievementUnlocked; |
| | | extern NSString *const WAEventContentView; |
| | | extern NSString *const WAEventShare; |
| | | extern NSString *const WAEventInvite; |
| | | extern NSString *const WAEventReEngage; |
| | | extern NSString *const WAEventUpdate; |
| | | extern NSString *const WAEventOpenedFromPushNotification; |
| | | extern NSString *const WAEventUserInfoUpdate; |
| | | extern NSString *const WAEventUserCreate; |
| | | extern NSString *const WAEventTaskUpdate; |
| | | extern NSString *const WAEventGoldUpdate; |
| | | extern NSString *const WAEventUserImport; |
| | | extern NSString *const WAEventSession; |
| | | |
| | | extern NSString *const WAEventAFTrackingInit; |
| | | |
| | | extern NSString *const WAEventInitiatedLoginWay; // 获取登录方式之前 |
| | | extern NSString *const WAEventPostLoginWay; // 获取登录方式之后 |
| | | extern NSString *const WAEventInitiatedPlatformLogin; // 进行登录之前 |
| | | extern NSString *const WAEventPostThirdPartyLogin; // 进行第三方渠道登录之后 |
| | | extern NSString *const WAEventPostWingLogin; // 进行WING平台登录之后 |
| | | |
| | | |
| | | //苹果支付事件上报打点事件名20200302 |
| | | extern NSString *const WAEventForHandTransaction; //手动消耗事件 |
| | | extern NSString *const WAEventForApplePayStateChanged; //苹果支付状态改变 |
| | | extern NSString *const WAEventForOrderCheckNoTransaction; //下单检测未消耗事件 |
| | | |
| | | |
| | | |
| | | |
| | | extern NSString *const WAEventParameterNameRegistrationMethod; |
| | | |
| | | extern NSString *const WAEventParameterNameCurrencyType; |
| | | extern NSString *const WAEventParameterNamePrice; |
| | | extern NSString *const WAEventParameterNameContentType; |
| | | extern NSString *const WAEventParameterNameContentID; |
| | | extern NSString *const WAEventParameterNameQuantity; |
| | | extern NSString *const WAEventParameterNameSearchString; |
| | | extern NSString *const WAEventParameterNameSuccess ; |
| | | extern NSString *const WAEventParameterNameMaxRatingValue; |
| | | extern NSString *const WAEventParameterNamePaymentInfoAvailable; |
| | | extern NSString *const WAEventParameterNameItemAmount; |
| | | extern NSString *const WAEventParameterNameItemName;//道具名称 |
| | | extern NSString *const WAEventParameterNameItemId; |
| | | extern NSString *const WAEventParameterNameLevel ; |
| | | extern NSString *const WAEventParameterNameLevelInfo; |
| | | extern NSString *const WAEventParameterNameLevelType; |
| | | extern NSString *const WAEventParameterNameScore; |
| | | extern NSString *const WAEventParameterNameDescription ; |
| | | |
| | | extern NSString *const WAEventParameterNameGender; |
| | | extern NSString *const WAEventParameterNameAge; |
| | | extern NSString *const WAEventParameterNameAccountType; |
| | | extern NSString *const WAEventParameterNameDeviceId; |
| | | extern NSString *const WAEventParameterNameIDFA; |
| | | extern NSString *const WAEventParameterNameServerId; |
| | | |
| | | extern NSString *const WAEventParameterNameStartTime; |
| | | extern NSString *const WAEventParameterNameNowTime; |
| | | extern NSString *const WAEventParameterNameSessionType; |
| | | extern NSString *const WAEventParameterUnAdult; |
| | | |
| | | extern NSString *const WAEventParameterNameTransactionId; |
| | | extern NSString *const WAEventParameterNamePaymentType; |
| | | extern NSString *const WAEventParameterNameCurrencyAmount; |
| | | extern NSString *const WAEventParameterNameVirtualCoinAmount; |
| | | extern NSString *const WAEventParameterNameVirtualCurrency; |
| | | extern NSString *const WAEventParameterNameIAPName; |
| | | extern NSString *const WAEventParameterNamePaymentType; |
| | | extern NSString *const WAEventParameterNameIAPAmount; |
| | | extern NSString *const WAEventParameterNameIAPId; |
| | | extern NSString *const WAEventParameterNameReceipt; |
| | | extern NSString *const WAEventParameterNameProductIdentifier; |
| | | extern NSString *const WAEventParameterNameRevenue; |
| | | |
| | | extern NSString *const WAEventParameterNameIsFirstEnter; |
| | | |
| | | extern NSString *const WAEventParameterNameTZ;//时区 |
| | | extern NSString *const WAEventParameterNameDevice;//设备 |
| | | extern NSString *const WAEventParameterNameProduct;//设备产品 |
| | | extern NSString *const WAEventParameterNameModel;//设备版本 |
| | | extern NSString *const WAEventParameterNameDeviceType;//类型 |
| | | extern NSString *const WAEventParameterNameDeviceBrand;//品牌 |
| | | extern NSString *const WAEventParameterNameOP;//运营商 |
| | | extern NSString *const WAEventParameterNameNetwork;//网络制式 |
| | | extern NSString *const WAEventParameterNameOS;//系统 |
| | | extern NSString *const WAEventParameterNameResolution;//分辨率 |
| | | |
| | | |
| | | |
| | | |
| | | extern NSString *const WAEventParameterNameOsign; |
| | | |
| | | //创建角色 |
| | | extern NSString *const WAEventParameterNameRegisterTime;//注册时间 |
| | | |
| | | //玩家任务统计 |
| | | extern NSString *const WAEventParameterNameTaskId;//任务id |
| | | extern NSString *const WAEventParameterNameTaskName;//任务名称 |
| | | extern NSString *const WAEventParameterNameTaskType;//任务类型 |
| | | extern NSString *const WAEventParameterNameTaskStatus;//任务状态 |
| | | |
| | | |
| | | //用户资料更新 |
| | | extern NSString *const WAEventParameterNameNickName;//角色名称 |
| | | extern NSString *const WAEventParameterNameVip;//vip等级 |
| | | extern NSString *const WAEventParameterNameStatus;//状态 |
| | | extern NSString *const WAEventParameterNameGameUserId;//游戏角色Id |
| | | extern NSString *const WAEventParameterNameBindGameGold;//绑定钻石 |
| | | extern NSString *const WAEventParameterNameGameGold;//用户钻石数 |
| | | extern NSString *const WAEventParameterNameFighting;//战斗力 |
| | | extern NSString *const WAEventParameterNameRoleType; |
| | | |
| | | //货币状况变更 |
| | | extern NSString *const WAEventParameterNameGoldType;//货币类型 |
| | | extern NSString *const WAEventParameterNameApproach;//变更途径 |
| | | extern NSString *const WAEventParameterNameCurrentAmount;//当前货币数量 |
| | | extern NSString *const WAEventParameterNameAmount;//变更货币数 |
| | | |
| | | // 获取登录方式之后 |
| | | extern NSString *const WAEventParameterNameLoginWayCount; // 登录方式个数 |
| | | extern NSString *const WAEventShowLoginWindow; //打开登录框 |
| | | |
| | | |
| | | |
| | | // 进行登录之前、进行第三方渠道登录之后、进行WING平台登录之后 |
| | | extern NSString *const WAEventParameterNamePlatformName; // 登录渠道名称 |
| | | extern NSString *const WAEventParameterNameLoginStatus; // 登录状态 |
| | | |
| | | //支付类型 |
| | | extern NSString *const WAValueForPaymentTypeApple; |
| | | extern NSString *const WAValueForPaymentTypeGoogle; |
| | | extern NSString *const WAValueForPaymentTypeFree; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /*! |
| | | @discussion WATrackProxy 该类用来做数据收集 |
| | | - - - |
| | | */ |
| | | @interface WATrackProxy : NSObject |
| | | /*! |
| | | @discussion 该方法用来发送数据到各个渠道 |
| | | @param eventName 事件名称 |
| | | @param value 累加值 |
| | | @param params 参数 |
| | | */ |
| | | +(void)trackWithEventName:(NSString *const)eventName valueToSum:(double)value params:(NSDictionary*)params; |
| | | /*! |
| | | @discussion 该方法用来发送数据到指定渠道 |
| | | @param eventName 事件名称 |
| | | @param value 累加值 |
| | | @param params 参数 |
| | | @param platform 渠道 |
| | | */ |
| | | +(void)trackWithEventName:(NSString *const)eventName valueToSum:(double)value params:(NSDictionary*)params platform:(NSString *const)platform; |
| | | /*! |
| | | @abstract 获取collectionInfo |
| | | */ |
| | | +(NSString*)getCollectionInfo; |
| | | |
| | | /*! |
| | | @discussion 设置点击充值事件(WAEventInitiatedPayment)和充值完成事件(WAEventPayment)是否自动统计,默认为自动统计 |
| | | @param isAuto 是否自动统计事件 |
| | | */ |
| | | |
| | | +(void)autoTriggerAfterPayment:(BOOL)isAuto; |
| | | +(BOOL)getAutoTriggerAfterPayment; |
| | | +(void)checkParams:(NSDictionary*)params eventName:(NSString*)eventName; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAUpdateInfo.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by wuyx on 15/10/21. |
| | | // Copyright © 2015年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | /*! |
| | | @discussion WAUpdateInfo 更新包信息。 |
| | | - - - |
| | | */ |
| | | @interface WAUpdateInfo : NSObject<NSCoding,NSCopying> |
| | | @property(nonatomic)int code; |
| | | @property(nonatomic,copy)NSString* msg; |
| | | @property(nonatomic)Boolean upgrated; |
| | | @property(nonatomic)int patchId; |
| | | @property(nonatomic)int patchVersion; |
| | | @property(nonatomic,copy)NSString* patchEncrypt; |
| | | @property(nonatomic,copy)NSString* moduleId; |
| | | @property(nonatomic)Boolean isMandatory; |
| | | @property(nonatomic,strong)NSString* downloadUrl; |
| | | @property(nonatomic,copy)NSString* osign; |
| | | +(WAUpdateInfo*)parserWithDict:(NSDictionary*)dict; |
| | | @end |
New file |
| | |
| | | // |
| | | // WAUserCenterResult.h |
| | | // WASdkIntf |
| | | // |
| | | // Created by hank on 2019/5/8. |
| | | // Copyright © 2019年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @interface WAUserCenterResult : NSObject<NSCoding,NSCopying> |
| | | |
| | | /*! |
| | | @abstract 状态码 |
| | | */ |
| | | @property NSInteger code; |
| | | /*! |
| | | @abstract 结果描述 |
| | | */ |
| | | @property(copy,nonatomic)NSString *msg; |
| | | /*! |
| | | @abstract 用户中心文字内容 |
| | | */ |
| | | @property(copy,nonatomic)NSString *userCenterInfo; |
| | | /*! |
| | | @abstract 用户名 |
| | | */ |
| | | @property(copy,nonatomic)NSString *userName; |
| | | /*! |
| | | @abstract 初始密码 |
| | | */ |
| | | @property(copy,nonatomic)NSString *password; |
| | | |
| | | /*! |
| | | @abstract 充值中心域名 |
| | | */ |
| | | @property(copy,nonatomic)NSString *rechargeCenterDomain; |
| | | |
| | | /*! |
| | | @abstract 服务器名 |
| | | */ |
| | | @property(copy,nonatomic)NSString *serverName; |
| | | |
| | | /*! |
| | | @abstract 游戏名称 |
| | | */ |
| | | @property(copy,nonatomic)NSString *appName; |
| | | |
| | | |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |
New file |
| | |
| | | // |
| | | // WAUserProxy.h |
| | | // WASdkIntfUI |
| | | // |
| | | // Created by GHW-T-01 on 16/3/1. |
| | | // Copyright © 2016年 GHW-T-01. All rights reserved. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | | #import <UIKit/UIKit.h> |
| | | #import <WASdkIntf/WALoginResult.h> |
| | | #import <WASdkIntf/WABindingResult.h> |
| | | #import <WASdkIntf/WAAccount.h> |
| | | #import <WASdkIntf/WAUserCenterResult.h> |
| | | #import <WASdkIntf/WAAppUser.h> |
| | | #import <WASdkIntf/WACertificationInfo.h> |
| | | #import <WASdkIntf/WADeleteRequestModel.h> |
| | | #import <WASdkIntf/WADeleteResult.h> |
| | | |
| | | /*! |
| | | @discussion 登录协议 |
| | | - - - |
| | | */ |
| | | @protocol WALoginDelegate <NSObject> |
| | | |
| | | @required |
| | | /*! |
| | | @abstract 登录成功 |
| | | @param result 登录结果 |
| | | */ |
| | | -(void)loginDidCompleteWithResults:(WALoginResult*)result; |
| | | /*! |
| | | @abstract 登录失败 |
| | | @param result 登录的用户信息 注:这不是登录结果,由于登录失败所以userId是空的.但如果第三方平台(Facebook,Apple)授权成功,pUserId,pToken,extends不为空,可用于提示用户. |
| | | @param error 错误 |
| | | */ |
| | | -(void)loginDidFailWithError:(NSError*)error andResult:(WALoginResult*)result; |
| | | @optional |
| | | /*! |
| | | @abstract 用户取消登录 |
| | | @param result 登录的账户信息 (注:返回的result只有platform有值) |
| | | */ |
| | | -(void)loginDidCancel:(WALoginResult*)result; |
| | | |
| | | @end |
| | | |
| | | /*! |
| | | @discussion 账户绑定协议 |
| | | - - - |
| | | */ |
| | | @protocol WAAccountBindingDelegate <NSObject> |
| | | |
| | | @required |
| | | /*! |
| | | @abstract 绑定成功 |
| | | @param result 绑定的账户信息 |
| | | */ |
| | | -(void)bindingDidCompleteWithResult:(WABindingResult*)result; |
| | | /*! |
| | | @abstract 绑定失败 |
| | | @param result 绑定的账户信息 |
| | | @param error 错误 |
| | | */ |
| | | -(void)bindingDidFailWithError:(NSError*)error andResult:(WABindingResult*)result; |
| | | @optional |
| | | /*! |
| | | @abstract 绑定取消 |
| | | @param result 绑定的账户信息(注:返回的result只有platform有值) |
| | | */ |
| | | -(void)bindingDidCancel:(WABindingResult*)result; |
| | | @end |
| | | |
| | | /*! |
| | | @discussion 登录界面协议 |
| | | - - - |
| | | */ |
| | | @protocol WALoginViewDelegate <NSObject> |
| | | |
| | | @required |
| | | /*! |
| | | @abstract 登录成功 |
| | | @param result 登录的用户信息 |
| | | */ |
| | | -(void)loginViewDidCompleteWithResult:(WALoginResult*)result; |
| | | /*! |
| | | @abstract 登录失败 |
| | | @param result 登录的用户信息 注:这不是登录结果,由于登录失败所以userId是空的.但如果第三方平台(Facebook,Apple)授权成功,pUserId,pToken,extends不为空,可用于提示用户. |
| | | @param error 错误 |
| | | */ |
| | | -(void)loginViewDidFailWithError:(NSError*)error andResult:(WALoginResult*)result; |
| | | @optional |
| | | /*! |
| | | @abstract 用户取消登录 |
| | | @param result 登录的用户信息(只有platform非空). |
| | | */ |
| | | -(void)loginViewDidCancel:(WALoginResult*)result; |
| | | @end |
| | | |
| | | |
| | | |
| | | |
| | | /*! |
| | | @discussion 账号管理界面协议 |
| | | - - - |
| | | */ |
| | | @protocol WAAcctManagerDelegate <NSObject> |
| | | |
| | | @required |
| | | /*! |
| | | @abstract 新建账户回调接口 |
| | | @param result 新建账户的账户信息 |
| | | */ |
| | | -(void)newAcctDidCompleteWithResult:(WALoginResult*)result; |
| | | /*! |
| | | @abstract 切换账户回调接口 |
| | | @param result 切换账户的账户信息 |
| | | */ |
| | | -(void)switchAcctDidCompleteWithResult:(WALoginResult*)result; |
| | | |
| | | /*! |
| | | @abstract 绑定账号回调接口 |
| | | @param bindResult 绑定账号信息 |
| | | */ |
| | | -(void)bindAccountDidCompleteWithResult:(WABindingResult*)bindResult; |
| | | |
| | | |
| | | /*! |
| | | @abstract 实名认证成功回调接口 |
| | | @param certificationInfo 实名认证信息 |
| | | */ |
| | | -(void)realNameAuthtDidCompleteWithResult:(WACertificationInfo*)certificationInfo; |
| | | |
| | | @end |
| | | |
| | | /*! |
| | | @discussion 用户中心 |
| | | - - - |
| | | */ |
| | | @protocol WAUserCenterNoticeDelegate <NSObject> |
| | | /*! |
| | | @abstract 获取用户中心数据回调接口 |
| | | @param result 用户中心数据信息 |
| | | */ |
| | | - (void)userCenterNoticeWithResult:(WAUserCenterResult *)result; |
| | | |
| | | @end |
| | | |
| | | /*! |
| | | @discussion 用户中心 |
| | | - - - |
| | | */ |
| | | @protocol WAUserCenterNoticeUIDelegate <NSObject> |
| | | /*! |
| | | @abstract 用户中心界面关闭回调接口 |
| | | */ |
| | | - (void)userCenterNoticeClose; |
| | | /*! |
| | | @abstract 用户中心界面错误回调接口 |
| | | @param error 用户中心错误信息 |
| | | */ |
| | | - (void)userCenterNoticeError:(NSError *)error; |
| | | |
| | | @end |
| | | |
| | | |
| | | /*! |
| | | @discussion WAUserProxy 是用户模块的代理类。功能包括设置登录流程、登录、登出、绑定、解绑、查询当前用户绑定的第三方平台账户列表、切换账号、创建账号等等。 |
| | | - - - |
| | | */ |
| | | |
| | | @interface WAUserProxy : NSObject |
| | | |
| | | /*! |
| | | @discussion 设置登录流程 |
| | | @param flowType 常量WA_LOGIN_FLOW_TYPE_DEFAULT是默认模式,表示切换新账户的时候不进行设备绑定操作,下次调用匿名登录还是登录之前的账户。常量WA_LOGIN_FLOW_TYPE_REBIND切换新账户的时候将当前设备的clientId绑定到新账户中,下一次匿名登录的时候将会登录到新账户。 |
| | | */ |
| | | +(void)setLoginFlowType:(int)flowType; |
| | | |
| | | /*! |
| | | @discussion 获取登录流程 |
| | | */ |
| | | +(int)getLoginFlowType; |
| | | |
| | | /*! |
| | | @discussion 登录接口 |
| | | @param platform 登录平台:目前的登录平台有Facebook,Apple,GUEST,对应的常量分别是WA_PLATFORM_FACEBOOK,WA_PLATFORM_APPLE,WA_PLATFORM_WINGA。 |
| | | @param extInfo 扩展信息 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)loginWithPlatform:(NSString *const)platform extInfo:(NSString*)extInfo delegate:(id<WALoginDelegate>)delegate; |
| | | /*! |
| | | @discussion 登出接口 |
| | | */ |
| | | +(void)logout; |
| | | |
| | | /*! |
| | | @discussion 绑定账户接口 |
| | | @param platform 绑定平台:目前有Facebook,Apple,对应的常量分别为WA_PLATFORM_FACEBOOK,WA_PLATFORM_APPLE |
| | | @param extInfo 扩展信息 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)bindingAccountWithPlatform:(NSString *const)platform extInfo:(NSString*)extInfo delegate:(id<WAAccountBindingDelegate>)delegate; |
| | | /*! |
| | | @discussion 查询绑定的第三方平台账户列表 |
| | | @param block 回调 |
| | | @error 错误 |
| | | @accounts 数组accounts存放着WAAccount类型的对象. |
| | | */ |
| | | +(void)queryBoundAccountWithCompleteBlock:(void(^)(NSError* error,NSArray<WAAccount *>* accounts))block; |
| | | /*! |
| | | @discussion 解绑账号接口 |
| | | @param platform 解绑平台(WAAccount中的platform) |
| | | @param pUserId 第三方平台用户id(WAAccount中的pUserId) |
| | | */ |
| | | +(void)unBindAccountWithPlatform:(NSString *const)platform platformUserId:(NSString*)pUserId completeBlock:(void(^)(NSError* error))completeBlock; |
| | | /*! |
| | | @discussion 切换账号接口 |
| | | @param platform 切换平台 |
| | | @param completeBlock 回调结果:包括error(错误)和result(登录结果) |
| | | */ |
| | | +(void)switchAccountWithPlatform:(NSString *const)platform completeBlock:(void(^)(NSError* error,WALoginResult* result))completeBlock; |
| | | |
| | | /*! |
| | | @discussion 创建账号接口 |
| | | @param completeBlock 回调结果:包括error(错误)和result(创建结果) |
| | | */ |
| | | +(void)createNewAccountWithCompleteBlock:(void(^)(NSError* error,WALoginResult* result))completeBlock; |
| | | |
| | | |
| | | /*! |
| | | @abstract 调用此方法打开登录界面 |
| | | @param delegate 委托 |
| | | @param cacheEnabled 是否缓存登录方式 当该参数为YES,默认以上次登录方式登录,不会弹出登录选择框。 |
| | | */ |
| | | +(void)login:(id<WALoginViewDelegate>)delegate cacheEnabled:(BOOL)cacheEnabled; |
| | | /*! |
| | | @abstract 调用此方法隐藏登录界面 |
| | | */ |
| | | +(void)hide; |
| | | /*! |
| | | @abstract 清除登录方式的缓存 清除缓存之后会再次弹出登录选择框 |
| | | */ |
| | | +(void)clearLoginCache; |
| | | /*! |
| | | @abstract 调用此方法打开账户管理界面 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)openAccountManager:(id<WAAcctManagerDelegate>)delegate; |
| | | |
| | | |
| | | /*! |
| | | @abstract 调用此方法打开账户管理界面 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)openAccountCenter:(id<WAAcctManagerDelegate>)delegate; |
| | | |
| | | |
| | | |
| | | |
| | | +(BOOL)isBoundPlatformAccount; |
| | | /*! |
| | | @abstract 获取账户信息 |
| | | @param platform 平台 |
| | | */ |
| | | +(WAAppUser*)getAccountInfoWithPlatform:(NSString *const)platform; |
| | | |
| | | //+(NSString*)transferWithPlatform:(NSString *const)platform; |
| | | |
| | | + (void)getUserCenterNotice:(id<WAUserCenterNoticeDelegate>)delegate; |
| | | |
| | | + (void)showUserCenterNoticeUI:(id<WAUserCenterNoticeUIDelegate>)delegate; |
| | | |
| | | /*! |
| | | @discussion 处理UIApplicationDelegate的方法[-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions]传递过来的参数。 |
| | | */ |
| | | + (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions; |
| | | |
| | | /*! |
| | | @discussion 处理UIApplicationDelegate的方法[- (void)applicationDidBecomeActive:(UIApplication *)application]传递过来的参数。 |
| | | */ |
| | | +(void)applicationDidBecomeActive:(UIApplication *)application; |
| | | |
| | | /*! |
| | | @discussion 处理UIApplicationDelegate的方法[- (void)applicationWillEnterForeground:(UIApplication *)application]传递过来的参数。 |
| | | */ |
| | | +(void)applicationWillEnterForeground:(UIApplication *)application; |
| | | |
| | | /*! |
| | | @discussion 处理UIApplicationDelegate的方法[- (void)applicationDidEnterBackground:(UIApplication *)application]传递过来的参数。 |
| | | */ |
| | | +(void)applicationDidEnterBackground:(UIApplication *)application; |
| | | |
| | | /*! |
| | | @discussion 处理UIApplicationDelegate的方法[-(BOOL)application:(UIApplication *)application |
| | | openURL:(NSURL *)url |
| | | sourceApplication:(NSString *)sourceApplication |
| | | annotation:(id)annotation]传递过来的参数。 |
| | | */ |
| | | +(BOOL)application:(UIApplication *)application |
| | | openURL:(NSURL *)url |
| | | sourceApplication:(NSString *)sourceApplication |
| | | annotation:(id)annotation; |
| | | |
| | | /*! |
| | | @discussion (tip:CP无需关注)此方法为成功登录第三方平台之后调用。根据第三方平台的pUserId,pToken,platform构建一个WALoginResult实例作为参数调用此方法。此方法将会调用WindAnalytics的登录接口。 |
| | | @param result 登录结果 |
| | | @param delegate 委托 |
| | | */ |
| | | +(void)loginWithResult:(WALoginResult*)result delegate:(id<WALoginDelegate>)delegate; |
| | | |
| | | +(void)loginWithResult:(WALoginResult*)result extInfo:(NSString*)extInfo delegate:(id<WALoginDelegate>)delegate; |
| | | |
| | | /*! |
| | | @discussion (tip:CP无需关注)设置当前的登录平台 |
| | | */ |
| | | +(void)setCurrentLoginPlatform:(NSString *const)platform; |
| | | /*! |
| | | @discussion (tip:CP无需关注)获取当前的登录平台 |
| | | */ |
| | | +(NSString*)getCurrentLoginPlatform; |
| | | /*! |
| | | @discussion (tip:CP无需关注)获取当前的登录结果 |
| | | */ |
| | | +(WALoginResult*)getCurrentLoginResult; |
| | | |
| | | /*! |
| | | @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)); |
| | | |
| | | |
| | | |
| | | /*! |
| | | @discussion 打开idfa弹框授权 |
| | | */ |
| | | + (void)openTTAAuthorizationWithCompletionHandler:(void(^)(NSError* error,NSUInteger status))block; |
| | | |
| | | /*! |
| | | @discussion 隐私协议弹框 |
| | | error 不为空时 |
| | | status -1 弹出了协议框,用户点击了拒绝 |
| | | |
| | | error 为空 |
| | | status 1 弹出了协议框,用户点击了同意 |
| | | status 2 没有弹出协议框,用户之前点击过同意,无需再弹 |
| | | */ |
| | | + (void)openPrivacyAgreementWindow:(void(^)(NSError* error,NSUInteger status))bloc; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | //**************************************删除账号有关start************************************************************ |
| | | |
| | | /*! |
| | | @discussion 检测是否可调用玩家身份确认接口 |
| | | */ |
| | | + (BOOL)canCheckIdentity; |
| | | |
| | | /*! |
| | | @discussion 注销账号时,验证当前用户的身份证、id是否匹配,确认是本人操作 |
| | | @param realName 姓名 |
| | | @param idCard 身份证号码 |
| | | */ |
| | | + (void)identityCheck:(NSString*)realName idCard:(NSString*)idCard completeBlock:(void(^)(NSError* error))block; |
| | | |
| | | |
| | | //删除账号授权,拿到第三方的token信息,如 signinwithapple拿到authorizationCode |
| | | + (void)deleteAccounAuthorizationWithPlatform:(NSString*)platform completeBlock:(void(^)(NSError* error,WADeleteRequestModel*deleteResult))block; |
| | | |
| | | |
| | | /*! |
| | | @discussion 账号删除接口 |
| | | */ |
| | | + (void)requestDeleteAccout:(WADeleteRequestModel*)deleteResult completeBlock:(void(^)(NSError* error,WADeleteResult*result))completeBlock; |
| | | |
| | | /*! |
| | | @discussion 取消删除账号接口 |
| | | */ |
| | | |
| | | + (void)cancelRequestDeleteAccoutWithUserid:(NSString*)userid callback:(void (^)(NSError *))completeBlock; |
| | | |
| | | |
| | | // status==1,提交删除账号申请成功 |
| | | // status==2,用户取消 |
| | | + (void)requestDeleteAccoutUI:(void(^)(NSError *error, NSUInteger status))completeBlock; |
| | | |
| | | |
| | | |
| | | |
| | | //**************************************删除账号有关end************************************************************ |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | @end |
New file |
| | |
| | | framework module WASdkIntf { |
| | | umbrella header "WASdkIntf.h" |
| | | |
| | | export * |
| | | module * { export * } |
| | | } |
| | |
| | | <string>SDK Version</string> |
| | | <key>wasdk_pat_version</key> |
| | | <string>Pat Version</string> |
| | | <key>wasdk_login_signinwithapple</key> |
| | | <string>Sign in with Apple</string> |
| | | <key>wasdk_has_no_pat</key> |
| | | <string>None</string> |
| | | <key>wasdk_login</key> |
| | |
| | | <key>wasdk_pay_way_2</key> |
| | | <string>2. Paste it on a mobile browser and visit the url |
| | | Recharge with discount</string> |
| | | <key>wasdk_login_signinwithapple</key> |
| | | <string>Sign in with Apple</string> |
| | | <key>wasdk_short_link_dated_alert</key> |
| | | <string>The link is only valid for 5 minutes. Please request a link again once it expires.</string> |
| | | <key>wasdk_ad_agreement_title</key> |
| | | <string>Account logout page text content and check text content</string> |
| | | <key>wasdk_ad_agreement_content</key> |
| | | <string>Dear user, please read and agree to the Game Account Cancellation Agreement (hereinafter referred to as the "Agreement") carefully before you officially start the next step of the game account cancellation process. If you start the following cancellation process, you will be deemed to have agreed to and complied with all the contents of this Agreement. |
| | | Before you start the cancellation process, we would like to remind you: |
| | | Please handle the in-game items properly, including but not limited to the in-game currency, other game virtual items, etc. Otherwise, you will be deemed to have given up your rights and interests in the game. If you successfully submit your account cancellation application, your account will still be active for%d days from the day after you submit your account cancellation application. During this period, we will not delete any information related to this account (your profile picture, nickname and other account information will still be available for your friends to see), except as otherwise stipulated by laws and regulations or relevant policies. If you log into the account during this period of %ddays, the cancellation process will be canceled. If you do not log in to this account within %d days, your account will be cancelled and your personal information deleted or anonymized. |
| | | |
| | | After you cancel your game account, your personal information will be deleted or anonymized unless otherwise stated by laws, regulations and this Agreement. You cannot retrieve, access, obtain or continue to use your personal information, and you have no right to ask us to retrieve your personal information. The aforementioned personal information includes but is not limited to: avatar, nickname, all game virtual items purchased or acquired in the game and other value services such as (but not limited to) texts, regions, chat records in the game and other content. For other detailed rules and notes on game account cancellation, please check the Game Account Cancellation Agreement. |
| | | |
| | | </string> |
| | | <key>wasdk_ad_agreement_readalert</key> |
| | | <string>Please agree to the Game Account Cancellation Agreement first.</string> |
| | | <key>wasdk_ad_agreement_haveread</key> |
| | | <string>I have read and agree to the Game Account Cancellation Agreement.</string> |
| | | <key>wasdk_ad_agreement_match1</key> |
| | | <string>the Game Account Cancellation Agreement</string> |
| | | <key>wasdk_ad_agreement_match2</key> |
| | | <string>the Game Account Cancellation Agreement</string> |
| | | <key>wasdk_ad_agreement_cancel</key> |
| | | <string>Cancel</string> |
| | | <key>wasdk_ad_agreement_next</key> |
| | | <string>Next</string> |
| | | <key>wasdk_ad_agreement_validation</key> |
| | | <string>Verify</string> |
| | | <key>wasdk_ad_agreement_finish</key> |
| | | <string>Complete</string> |
| | | <key>wasdk_ad_authorization_title</key> |
| | | <string>Verification of third-party authorization</string> |
| | | <key>wasdk_ad_authorization_content</key> |
| | | <string>The account is bound to a third-party account, please select the current third-party account for verification. Once the verification is completed, it will automatically proceed to the next step.</string> |
| | | <key>wasdk_ad_authorization_signinwithapple</key> |
| | | <string>SigninwithApple</string> |
| | | <key>wasdk_ad_finished_title</key> |
| | | <string>The application for canceling the game account has been submitted successfully</string> |
| | | <key>wasdk_ad_finished_content1</key> |
| | | <string>Thank you for supporting this game</string> |
| | | <key>wasdk_ad_finished_content2</key> |
| | | <string>Your account has been audited on%@(Server Time), and the application for deregistration has been successfully submitted. Except the circumstances stipulated by laws and regulations and cancellation agreementWe will hold the account for you until (server time)%@(%d days from the day after you submit the cancellation application). If you do not log in to this account within %d days, and your application for account cancellation is successful, we will delete or anonymize your personal information. |
| | | </string> |
| | | <key>wasdk_ad_finished_content3</key> |
| | | <string>Please do not log in or use this account before the expiration of the preceding %d days to ensure the smooth completion of the cancellation, otherwise you will be deemed to have revoked the cancellation application. |
| | | </string> |
| | | <key>wasdk_ad_login_alerttitle</key> |
| | | <string>Notice</string> |
| | | <key>wasdk_ad_login_alertcontent</key> |
| | | <string>This account is applying for account cancellation, which will be completed by %@ (server time). If you choose to continue login, you will cancel this account cancellation application by default, please note.</string> |
| | | <key>wasdk_ad_login_cancellogin</key> |
| | | <string>Cancel login</string> |
| | | <key>wasdk_ad_login_goonlogin</key> |
| | | <string>Continue login</string> |
| | | </dict> |
| | | </plist> |
| | |
| | | Recharge with discount</string> |
| | | <key>wasdk_short_link_dated_alert</key> |
| | | <string>The link is only valid for 5 minutes. Please request a link again once it expires.</string> |
| | | <key>wasdk_ad_agreement_title</key> |
| | | <string>Account logout page text content and check text content</string> |
| | | <key>wasdk_ad_agreement_content</key> |
| | | <string>Dear user, please read and agree to the Game Account Cancellation Agreement (hereinafter referred to as the "Agreement") carefully before you officially start the next step of the game account cancellation process. If you start the following cancellation process, you will be deemed to have agreed to and complied with all the contents of this Agreement. |
| | | Before you start the cancellation process, we would like to remind you: |
| | | Please handle the in-game items properly, including but not limited to the in-game currency, other game virtual items, etc. Otherwise, you will be deemed to have given up your rights and interests in the game. If you successfully submit your account cancellation application, your account will still be active for%d days from the day after you submit your account cancellation application. During this period, we will not delete any information related to this account (your profile picture, nickname and other account information will still be available for your friends to see), except as otherwise stipulated by laws and regulations or relevant policies. If you log into the account during this period of %ddays, the cancellation process will be canceled. If you do not log in to this account within %d days, your account will be cancelled and your personal information deleted or anonymized. |
| | | |
| | | After you cancel your game account, your personal information will be deleted or anonymized unless otherwise stated by laws, regulations and this Agreement. You cannot retrieve, access, obtain or continue to use your personal information, and you have no right to ask us to retrieve your personal information. The aforementioned personal information includes but is not limited to: avatar, nickname, all game virtual items purchased or acquired in the game and other value services such as (but not limited to) texts, regions, chat records in the game and other content. For other detailed rules and notes on game account cancellation, please check the Game Account Cancellation Agreement. |
| | | |
| | | </string> |
| | | <key>wasdk_ad_agreement_readalert</key> |
| | | <string>Please agree to the Game Account Cancellation Agreement first.</string> |
| | | <key>wasdk_ad_agreement_haveread</key> |
| | | <string>I have read and agree to the Game Account Cancellation Agreement.</string> |
| | | <key>wasdk_ad_agreement_match1</key> |
| | | <string>the Game Account Cancellation Agreement</string> |
| | | <key>wasdk_ad_agreement_match2</key> |
| | | <string>the Game Account Cancellation Agreement</string> |
| | | <key>wasdk_ad_agreement_cancel</key> |
| | | <string>Cancel</string> |
| | | <key>wasdk_ad_agreement_next</key> |
| | | <string>Next</string> |
| | | <key>wasdk_ad_agreement_validation</key> |
| | | <string>Verify</string> |
| | | <key>wasdk_ad_agreement_finish</key> |
| | | <string>Complete</string> |
| | | <key>wasdk_ad_authorization_title</key> |
| | | <string>Verification of third-party authorization</string> |
| | | <key>wasdk_ad_authorization_content</key> |
| | | <string>The account is bound to a third-party account, please select the current third-party account for verification. Once the verification is completed, it will automatically proceed to the next step.</string> |
| | | <key>wasdk_ad_authorization_signinwithapple</key> |
| | | <string>SigninwithApple</string> |
| | | <key>wasdk_ad_finished_title</key> |
| | | <string>The application for canceling the game account has been submitted successfully</string> |
| | | <key>wasdk_ad_finished_content1</key> |
| | | <string>Thank you for supporting this game</string> |
| | | <key>wasdk_ad_finished_content2</key> |
| | | <string>Your account has been audited on%@(Server Time), and the application for deregistration has been successfully submitted. Except the circumstances stipulated by laws and regulations and cancellation agreementWe will hold the account for you until (server time)%@(%d days from the day after you submit the cancellation application). If you do not log in to this account within %d days, and your application for account cancellation is successful, we will delete or anonymize your personal information. |
| | | </string> |
| | | <key>wasdk_ad_finished_content3</key> |
| | | <string>Please do not log in or use this account before the expiration of the preceding %d days to ensure the smooth completion of the cancellation, otherwise you will be deemed to have revoked the cancellation application. |
| | | </string> |
| | | <key>wasdk_ad_login_alerttitle</key> |
| | | <string>Notice</string> |
| | | <key>wasdk_ad_login_alertcontent</key> |
| | | <string>This account is applying for account cancellation, which will be completed by %@ (server time). If you choose to continue login, you will cancel this account cancellation application by default, please note.</string> |
| | | <key>wasdk_ad_login_cancellogin</key> |
| | | <string>Cancel login</string> |
| | | <key>wasdk_ad_login_goonlogin</key> |
| | | <string>Continue login</string> |
| | | </dict> |
| | | </plist> |
| | |
| | | <string>How to recharge</string> |
| | | <key>wasdk_short_link_dated_alert</key> |
| | | <string>The link is only valid for 5 minutes. Please request a link again once it expires.</string> |
| | | <key>wasdk_ad_agreement_title</key> |
| | | <string>Acuerdo de Cancelación de Cuenta</string> |
| | | <key>wasdk_ad_agreement_content</key> |
| | | <string>Querido usuario, lee atentamente y acepta el Acuerdo de Cancelación de Cuenta de Juego (a partir de ahora el "Acuerdo") antes de continuar oficialmente con el siguiente paso del proceso de la cancelación de la cuenta de juego. Si empiezas el proceso de cancelación, se dará por hecho que aceptas y cumples con los contenidos de este Acuerdo. |
| | | Antes de empezar con el proceso de cancelación, nos gustaría recordarte: |
| | | Por favor recuerda gestionar tu moneda virtual, objetos y otros bienes virtuales asociados a tu cuenta. En caso de no gestionarlo, se dará por hecho que has cedido tus derechos e intereses sobre el juego. Si entregas tu solicitud de cancelación de cuenta con éxito, tu cuenta seguirá activa durante%d días tras haber entregado tu solicitud de cancelación. Durante este periodo de tiempo, no eliminaremos la información relacionada con tu cuenta (tu imagen de perfil, tu nombre de usuario y otra información de tu cuenta aun podrá ser visualizada por tus amigos), excepto la estipulada por las leyes y reglamentos relevantes. Si entras en tu cuenta durante este periodo de %ddías, el proceso de cancelación será cancelado. Si no entras en tu cuenta durante este periodo de %d días, tu cuenta será cancelada y tu información personal será eliminada o hecha anónima. |
| | | |
| | | Tras cancelar tu cuenta de juego, tu información personal será eliminada o hecha anónima a no ser que se estipule lo contrario por las leyes, reglamentos y este Acuerdo. No podrás recuperar, acceder, conseguir o continuar usando tu información personal, no tendrás derecho a reclamar la recuperación de tu información personal. La información personal citada anteriormente incluye pero no está limitada a: avatar, nombre de usuario, todos los objetos virtuales comprados o adquiridos en el juego y otros servicios valorados como (pero no limitado a) textos, regiones, historial de chat y otros contenidos del juego. Para saber más detalles sobre la cancelación de cuenta de juego, por favor lee el Acuerdo de Cancelación de Cuenta de Juego.Antes de empezar con el proceso de cancelación, nos gustaría recordarte: |
| | | Por favor recuerda gestionar tu moneda virtual, objetos y otros bienes virtuales asociados a tu cuenta. En caso de no gestionarlo, se dará por hecho que has cedido tus derechos e intereses sobre el juego. Si entregas tu solicitud de cancelación de cuenta con éxito, tu cuenta seguirá activa durante %d días tras haber entregado tu solicitud de cancelación. Durante este periodo de tiempo, no eliminaremos la información relacionada con tu cuenta (tu imagen de perfil, tu nombre de usuario y otra información de tu cuenta aun podrá ser visualizada por tus amigos), excepto la estipulada por las leyes y reglamentos relevantes. Si entras en tu cuenta durante este periodo de %d días, el proceso de cancelación será cancelado. Si no entras en tu cuenta durante este periodo de %d días, tu cuenta será cancelada y tu información personal será eliminada o hecha anónima. |
| | | |
| | | Tras cancelar tu cuenta de juego, tu información personal será eliminada o hecha anónima a no ser que se estipule lo contrario por las leyes, reglamentos y este Acuerdo. No podrás recuperar, acceder, conseguir o continuar usando tu información personal, no tendrás derecho a reclamar la recuperación de tu información personal. La información personal citada anteriormente incluye pero no está limitada a: avatar, nombre de usuario, todos los objetos virtuales comprados o adquiridos en el juego y otros servicios valorados como (pero no limitado a) textos, regiones, historial de chat y otros contenidos del juego. Para saber más detalles sobre la cancelación de cuenta de juego, por favor lee el Acuerdo de Cancelación de Cuenta.</string> |
| | | <key>wasdk_ad_agreement_readalert</key> |
| | | <string>Por favor, acepta el Acuerdo de Cancelación de Cuenta de Juego primero.</string> |
| | | <key>wasdk_ad_agreement_haveread</key> |
| | | <string>He leído y acepto el Acuerdo de Cancelación de Cuenta.</string> |
| | | <key>wasdk_ad_agreement_match1</key> |
| | | <string>Acuerdo de Cancelación de Cuenta</string> |
| | | <key>wasdk_ad_agreement_match2</key> |
| | | <string>Acuerdo de Cancelación de Cuenta</string> |
| | | <key>wasdk_ad_agreement_cancel</key> |
| | | <string>Cancelar</string> |
| | | <key>wasdk_ad_agreement_validation</key> |
| | | <string>Verificar</string> |
| | | <key>wasdk_ad_agreement_next</key> |
| | | <string>Siguiente</string> |
| | | <key>wasdk_ad_agreement_finish</key> |
| | | <string>Completado</string> |
| | | <key>wasdk_ad_authorization_title</key> |
| | | <string>Autorización de Verificación de terceros</string> |
| | | <key>wasdk_ad_authorization_content</key> |
| | | <string>Esta cuenta está unida a una cuenta de terceros, por favor, elige la cuenta de terceros para verificar. Una vez se complete la verificación, pasará automáticamente al próximo paso.</string> |
| | | <key>wasdk_ad_authorization_signinwithapple</key> |
| | | <string>SigninwithApple</string> |
| | | <key>wasdk_ad_finished_title</key> |
| | | <string>La solicitud para cancelar la cuenta de juego ha sido enviada con éxito</string> |
| | | <key>wasdk_ad_finished_content1</key> |
| | | <string>Gracias por apoyar este juego</string> |
| | | <key>wasdk_ad_finished_content2</key> |
| | | <string>Tu cuenta ha sido registrada el%@(Hora del servidor), y la solicitud para su cancelación ha sido enviada con éxito. Exceptuando las circunstancias estipuladas por la ley, regulaciones y el Acuerdo de Cancelación, conservaremos tu cuenta hasta el%@(Hora del servidor). %d días desde el día que enviaste tu solicitud de cancelación. Si no entras en tu cuenta durante este periodo de %d días, y tu solicitud de cancelación es exitosa, tu información personal será eliminada o hecha anónima. </string> |
| | | <key>wasdk_ad_finished_content3</key> |
| | | <string>Por favor, no entres ni uses esta cuenta durante los siguientes %d días para asegurar su cancelación. En caso contrario se considerará que la solicitud de cancelación ha sido anulada.</string> |
| | | <key>wasdk_ad_login_alerttitle</key> |
| | | <string>Aviso</string> |
| | | <key>wasdk_ad_login_alertcontent</key> |
| | | <string>Esta cuenta ha solicitado una cancelación, que se completará el %@ (Hora del servidor). Si entras antes de esa fecha, se anulará el proceso de cancelación de la cuenta.</string> |
| | | <key>wasdk_ad_login_cancellogin</key> |
| | | <string>Cancelar ingreso</string> |
| | | <key>wasdk_ad_login_goonlogin</key> |
| | | <string>Continuar ingreso</string> |
| | | </dict> |
| | | </plist> |
| | |
| | | <string>Central de Pagamento</string> |
| | | <key>wasdk_short_link_dated_alert</key> |
| | | <string>O link é válido apenas por 5 minutos. Solicite um link novamente quando expirar.</string> |
| | | <key>wasdk_ad_agreement_title</key> |
| | | <string>Contrato de cancelamento de conta</string> |
| | | <key>wasdk_ad_agreement_content</key> |
| | | <string>Caro usuário, leia e concorde com o Contrato de Cancelamento de Conta de Jogo (doravante denominado "Contrato") cuidadosamente antes de iniciar oficialmente a próxima etapa do processo de cancelamento de conta de jogo. Se você iniciar o processo de cancelamento a seguir , será considerado que você concordou e cumpriu com todo o conteúdo deste Contrato . |
| | | Antes de iniciar o processo de cancelamento, gostaríamos de lembrá-lo : |
| | | Por favor, manuseie os itens do jogo corretamente, incluindo, mas não se limitando à moeda do jogo, outros itens virtuais do jogo, etc. Caso contrário, será considerado que você desistiu de seus direitos e interesses no jogo. Se você enviar seu pedido de cancelamento de conta com sucesso, sua conta ainda estará ativa por%d dias a partir do dia seguinte ao envio do pedido de cancelamento de conta. Durante esse período, não excluiremos nenhuma informação relacionada a esta conta (sua foto de perfil, apelido e outras informações da conta ainda estarão disponíveis para seus amigos verem ), exceto quando estipulado de outra forma por leis e regulamentos ou políticas relevantes. Se você fizer login na conta durante esse período de %ddias, o processo de cancelamento será cancelado. Se você não fizer login nesta conta em %d dias, sua conta será cancelada e suas informações pessoais serão excluídas ou anonimizadas . |
| | | |
| | | Depois que você cancelar sua conta de jogo, suas informações pessoais serão excluídas ou anonimizadas, salvo disposição em contrário por leis, regulamentos e este Contrato. Você não pode recuperar, acessar, obter ou continuar a usar suas informações pessoais e não tem o direito de nos pedir para recuperar suas informações pessoais. As informações pessoais acima mencionadas incluem, mas não se limitam a: avatar, apelido, todos os itens virtuais do jogo comprados ou adquiridos no jogo e outros serviços de valor , como (mas não limitado a) textos , regiões, registros de bate-papo no jogo e outros conteúdos. Para outras regras detalhadas e notas sobre o cancelamento da conta do jogo, consulte o Contrato de Cancelamento de Conta de Jogo . |
| | | |
| | | </string> |
| | | <key>wasdk_ad_agreement_readalert</key> |
| | | <string>Por favor, concorde primeiro com o Contrato de Cancelamento de Conta de Jogo.</string> |
| | | <key>wasdk_ad_agreement_haveread</key> |
| | | <string>Li e Contrato de Cancelamento de Conta de Jogo</string> |
| | | <key>wasdk_ad_agreement_match1</key> |
| | | <string>Contrato de Cancelamento de Conta de Jogo</string> |
| | | <key>wasdk_ad_agreement_match2</key> |
| | | <string>Contrato de Cancelamento de Conta de Jogo</string> |
| | | <key>wasdk_ad_agreement_cancel</key> |
| | | <string>Cancelar</string> |
| | | <key>wasdk_ad_agreement_next</key> |
| | | <string>Próximo</string> |
| | | <key>wasdk_ad_agreement_validation</key> |
| | | <string>Verificar</string> |
| | | <key>wasdk_ad_agreement_finish</key> |
| | | <string>Completo</string> |
| | | <key>wasdk_ad_authorization_title</key> |
| | | <string>Verificação de autorização de terceiros</string> |
| | | <key>wasdk_ad_authorization_content</key> |
| | | <string>A conta está vinculada a uma conta de terceiros. Selecione a conta de terceiros atual para verificação. Assim que a verificação for concluída, ela prosseguirá automaticamente para a próxima etapa.</string> |
| | | <key>wasdk_ad_authorization_signinwithapple</key> |
| | | <string>SigninwithApple</string> |
| | | <key>wasdk_ad_finished_title</key> |
| | | <string>O pedido de cancelamento da conta do jogo foi enviado com sucesso</string> |
| | | <key>wasdk_ad_finished_content1</key> |
| | | <string>Obrigado por apoiar este jogo</string> |
| | | <key>wasdk_ad_finished_content2</key> |
| | | <string>Sua conta foi auditada em%@(horário do servidor) e o pedido de cancelamento de registro foi enviado com sucesso. Exceto as circunstâncias estipuladas por leis e regulamentos e contrato de cancelamento, manteremos a conta para você até (horário do servidor)%@(%d dias a partir do dia seguinte ao envio do pedido de cancelamento). Se você não fizer login nesta conta dentro de %d dias e sua solicitação de cancelamento de conta for bem-sucedida, excluiremos ou anonimizaremos suas informações pessoais</string> |
| | | <key>wasdk_ad_finished_content3</key> |
| | | <string>Por favor, não faça login ou use esta conta antes de %d dias para garantir a conclusão do cancelamento, caso contrário, você será considerado como tendo revogado o pedido de cancelamento. |
| | | </string> |
| | | <key>wasdk_ad_login_alerttitle</key> |
| | | <string>Aviso</string> |
| | | <key>wasdk_ad_login_alertcontent</key> |
| | | <string>Esta conta foi solicitada para cancelamento de conta, que será concluído até %@ (horário do servidor). Se você fizer login antes desse horário, cancelará o processo de cancelamento da conta .</string> |
| | | <key>wasdk_ad_login_cancellogin</key> |
| | | <string>Cancelar login</string> |
| | | <key>wasdk_ad_login_goonlogin</key> |
| | | <string>Continuar login</string> |
| | | </dict> |
| | | </plist> |
| | |
| | | 即可以更优惠的价格购买</string> |
| | | <key>wasdk_short_link_dated_alert</key> |
| | | <string>链接有效期为5分钟,逾时需重新获取</string> |
| | | <key>wasdk_ad_agreement_content</key> |
| | | <string> 尊敬的用户,在您正式开始下一步有关本游戏的游戏账号注销流程前,请务必先详细阅读并同意《游戏账号注销协议》(以下简称“本协议”)。 |
| | | 您按照我们的注销操作流程开始注销的,经过您勾选本协议并点击下一步操作的,即视为您已经同意和遵守本协议全部内容。我们在此特别提醒您: |
| | | 请您妥善处理,包括但不限于游戏代币,其他游戏虚拟道具等,若注销时未处理则视为您放弃游戏权益。如您成功提交账号注销申请,我们将从您提交账号注销次日起,为您保留该账号%d 日。在此期内,我们暂时不会删除或匿名化处理该账号的相关信息(如您的好友仍可见您的头像、昵称等账号信息),但法律法规或相关政策另有规定的除外。如果您在这 %d天内,使用该账号登录本游戏,将视为您撤销该账号注销申请。此后 %d 日内未再登录该账号,我们将完成该账号注销,删除或匿名化处理您的相关个人信息。 |
| | | |
| | | 注销本游戏账号后,除法律法规和本协议另有规定外,您该游戏账号下的个人信息将会被删除或匿名化处理,您无法再检索、访问、获取、继续使用和找回,也无权要求我们找回个人信息,前述个人信息包括但不限于:头像、昵称、购买或游戏内获得的一切游戏虚拟道具及其他增值服务、发言、地区、游戏中聊天记录等内容。 |
| | | 有关游戏账号注销的其他详细规则及注意事项请点击查看《游戏账号注销协议 》。 |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | </string> |
| | | <key>wasdk_ad_agreement_readalert</key> |
| | | <string>请先同意《游戏账号注销协议》</string> |
| | | <key>wasdk_ad_agreement_haveread</key> |
| | | <string>我已详细阅读并同意《游戏账号注销协议》</string> |
| | | <key>wasdk_ad_agreement_title</key> |
| | | <string>阅读游戏账号注销协议</string> |
| | | <key>wasdk_ad_agreement_match1</key> |
| | | <string>《游戏账号注销协议》</string> |
| | | <key>wasdk_ad_agreement_match2</key> |
| | | <string>《游戏账号注销协议 》</string> |
| | | <key>wasdk_ad_agreement_cancel</key> |
| | | <string>取消</string> |
| | | <key>wasdk_ad_agreement_next</key> |
| | | <string>下一步</string> |
| | | <key>wasdk_ad_agreement_validation</key> |
| | | <string>验 证</string> |
| | | <key>wasdk_ad_agreement_finish</key> |
| | | <string>完 成</string> |
| | | <key>wasdk_ad_authorization_title</key> |
| | | <string>第三方授权验证</string> |
| | | <key>wasdk_ad_authorization_content</key> |
| | | <string>账号绑定了第三方账号,请选择当前绑定的第三方账号进行验证,验证通过后自动进入下一步</string> |
| | | <key>wasdk_ad_authorization_signinwithapple</key> |
| | | <string>SigninwithApple</string> |
| | | <key>wasdk_ad_finished_title</key> |
| | | <string>注销游戏账号申请提交成功</string> |
| | | <key>wasdk_ad_finished_content1</key> |
| | | <string>感谢您对本游戏的支持</string> |
| | | <key>wasdk_ad_finished_content2</key> |
| | | <string>您的账号已于%@ 完成注销条件审核,成功提交注销申请。除法律法规规定和注销协议约定情形外,我们将为您保留该账号至%@ (从您提交注销申请次日起 %d 日)。此后 %d日内未登录该账号,账号注销申请成功,我们将删除或匿名化处理您的相关个人信息。</string> |
| | | <key>wasdk_ad_finished_content3</key> |
| | | <string>在前述%d日届满前,请您不要登录和使用该账号,以确保注销的顺利完成,否则视为您撤销注销申请</string> |
| | | <key>wasdk_ad_login_alerttitle</key> |
| | | <string>提醒</string> |
| | | <key>wasdk_ad_login_alertcontent</key> |
| | | <string>本账号正在申请账号注销,将于%@完成,如您选择继续登录即默认您撤销本次账号注销申请,请知悉</string> |
| | | <key>wasdk_ad_login_cancellogin</key> |
| | | <string>取消登录</string> |
| | | <key>wasdk_ad_login_goonlogin</key> |
| | | <string>继续登录</string> |
| | | </dict> |
| | | </plist> |
| | |
| | | 即可以更優惠的價格購買</string> |
| | | <key>wasdk_short_link_dated_alert</key> |
| | | <string>鏈接有效期為5分鐘,逾時需重新獲取</string> |
| | | <key>wasdk_ad_agreement_content</key> |
| | | <string>尊敬的用戶,在您正式開始下一步有關本遊戲的遊戲賬號註銷流程前,請務必先詳細閱讀並同意《遊戲賬號註銷協議》(以下簡稱“本協議”)。 |
| | | 您按照我們的註銷操作流程開始註銷的,經過您勾選本協議並點擊下一步操作的,即視為您已經同意和遵守本協議全部內容。我們在此特別提醒您: |
| | | |
| | | 請您妥善處理,包括但不限於遊戲代幣,其他遊戲虛擬道具等,若註銷時未處理則視為您放棄遊戲權益。如您成功提交賬號註銷申請,我們將從您提交賬號註銷次日起,為您保留該賬號%d 日。在此期內,我們暫時不會刪除或匿名化處理該賬號的相關信息(如您的好友仍可見您的頭像、暱稱等賬號信息),但法律法規或相關政策另有規定的除外。如果您在這 %d天內,使用該賬號登錄本遊戲,將視為您撤銷該賬號註銷申請。此後 %d 日內未再登錄該賬號,我們將完成該賬號註銷,刪除或匿名化處理您的相關個人信息。 |
| | | 註銷本遊戲賬號後,除法律法規和本協議另有規定外,您該遊戲賬號下的個人信息將會被刪除或匿名化處理,您無法再檢索、訪問、獲取、繼續使用和找回,也無權要求我們找回個人信息,前述個人信息包括但不限於:頭像、暱稱、購買或遊戲內獲得的一切遊戲虛擬道具及其他增值服務、發言、地區、遊戲中聊天記錄等內容。 |
| | | 有關遊戲賬號註銷的其他詳細規則及注意事項請點擊查看《遊戲賬號註銷協議 》。</string> |
| | | <key>wasdk_ad_agreement_readalert</key> |
| | | <string>請先同意《遊戲賬號註銷協議》</string> |
| | | <key>wasdk_ad_agreement_haveread</key> |
| | | <string>我已詳細閱讀並同意《遊戲賬號註銷協議》</string> |
| | | <key>wasdk_ad_agreement_title</key> |
| | | <string>閱讀遊戲賬號註銷協議</string> |
| | | <key>wasdk_ad_agreement_match1</key> |
| | | <string>《遊戲賬號註銷協議》</string> |
| | | <key>wasdk_ad_agreement_match2</key> |
| | | <string>《遊戲賬號註銷協議 》</string> |
| | | <key>wasdk_ad_agreement_cancel</key> |
| | | <string>取消</string> |
| | | <key>wasdk_ad_agreement_next</key> |
| | | <string>下一步</string> |
| | | <key>wasdk_ad_agreement_validation</key> |
| | | <string>驗 證</string> |
| | | <key>wasdk_ad_agreement_finish</key> |
| | | <string>完 成</string> |
| | | <key>wasdk_ad_authorization_title</key> |
| | | <string>第三方授權驗證</string> |
| | | <key>wasdk_ad_authorization_content</key> |
| | | <string>賬號綁定了第三方賬號,請選擇當前綁定的第三方賬號進行驗證,驗證通過後自動進入下一步</string> |
| | | <key>wasdk_ad_authorization_signinwithapple</key> |
| | | <string>SigninwithApple</string> |
| | | <key>wasdk_ad_finished_title</key> |
| | | <string>註銷遊戲賬號申請提交成功 |
| | | </string> |
| | | <key>wasdk_ad_finished_content1</key> |
| | | <string>感謝您對本遊戲的支持</string> |
| | | <key>wasdk_ad_finished_content2</key> |
| | | <string>您的賬號已於%@ 完成註銷條件審核,成功提交註銷申請。除法律法規規定和註銷協議約定情形外,我們將為您保留該賬號至%@ (從您提交註銷申請次日起 %d 日)。此後 %d日內未登錄該賬號,賬號註銷申請成功,我們將刪除或匿名化處理您的相關個人信息。</string> |
| | | <key>wasdk_ad_finished_content3</key> |
| | | <string>在前述%d日屆滿前,請您不要登錄和使用該賬號,以確保註銷的順利完成,否則視為您撤銷註銷申請</string> |
| | | <key>wasdk_ad_login_alerttitle</key> |
| | | <string>提醒</string> |
| | | <key>wasdk_ad_login_alertcontent</key> |
| | | <string>本賬號正在申請賬號註銷,將於%@完成,如您選擇繼續登錄即默認您撤銷本次賬號註銷申請,請知悉</string> |
| | | <key>wasdk_ad_login_cancellogin</key> |
| | | <string>取消登錄</string> |
| | | <key>wasdk_ad_login_goonlogin</key> |
| | | <string>繼續登錄</string> |
| | | </dict> |
| | | </plist> |