Skip to content

Commit a69ebbd

Browse files
author
daizi
committed
update:version upate to 1.2.0.0.
1 parent 840940b commit a69ebbd

File tree

10 files changed

+69
-2
lines changed

10 files changed

+69
-2
lines changed

GYSDK.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
#
1717

1818
s.name = "GYSDK"
19-
s.version = "1.1.4.1"
19+
s.version = "1.2.0.0"
2020
s.summary = "个验 iOS SDK CocoaPods 集成库"
2121

2222
# This description is used to generate tags and improve search results.
@@ -121,7 +121,7 @@ Pod::Spec.new do |s|
121121
s.frameworks = "AdSupport"
122122

123123
# s.library = "iconv"
124-
s.libraries = "z"
124+
s.libraries = 'z','sqlite3.0'
125125

126126

127127
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

GeYanSdk.framework/GeYanSdk

5.6 MB
Binary file not shown.

GeYanSdk.framework/Headers/GeYanSdk.h

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
// Copyright © 2017年 getui. All rights reserved.
77
//
88

9+
#import "GyCheckModel.h"
910
#import <Foundation/Foundation.h>
11+
#import <UIKit/UIKit.h>
12+
13+
1014
/**
1115
* 注册接口回调
1216
*
@@ -29,6 +33,7 @@ typedef void (^GyVerifyCallback)(NSDictionary *verifyDictionary);
2933
*/
3034
typedef void (^GySmsVerifyCallback)(NSDictionary *smsVerifyDictionary);
3135

36+
3237
/**
3338
* 验证方式
3439
*/
@@ -89,6 +94,34 @@ typedef NS_ENUM(NSUInteger, GyVerifyType) {
8994
* @param callback 通用接口回调
9095
*/
9196
+ (void)smsVerifyCode:(NSString *)code withPnMD5:(NSString *)pnMD5 withCallback:(GySmsVerifyCallback)callback;
97+
98+
/**
99+
* umcLogin 接口
100+
*
101+
* @param isEnableCustomSMS 是否打开SDK自带的短信验证码服务,默认打开
102+
* @param vc 调用显式登录所在的vc
103+
* @param callback 通用接口回调
104+
*/
105+
+ (void)umcLoginWithEnableCustomSMS:(BOOL)isEnableCustomSMS withController:(UIViewController *)vc withCallback:(GyVerifyCallback)callback;
106+
/**
107+
* umc 预取号接口
108+
*
109+
* @param complete 接口回调
110+
*/
111+
+ (void)preGetPhonenumber:(void (^)(id sender))complete;
112+
113+
/**
114+
自定义UI样式参数
115+
116+
@param customUIParams UI样式参数(见顶部声明的key)
117+
@param customViews 自定义视图
118+
*/
119+
+ (void)customUIWithParams:(NSDictionary *)customUIParams
120+
customViews:(void (^)(NSDictionary *customAreaView))customViews;
121+
122+
+ (void)checkRegister:(GyCheckModel *)checkModel withCallback:(GyVerifyCallback)callback;
123+
124+
+ (void)checkLogin:(GyCheckModel *)checkModel withCallback:(GyVerifyCallback)callback;
92125
/**
93126
* 销毁 SDK
94127
*/
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
//
2+
// GyCheckModel.h
3+
// GySdkLib
4+
//
5+
// Created by admin on 2018/3/16.
6+
// Copyright © 2018年 getui. All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
11+
@interface GyCheckModel : NSObject
12+
@property (nonatomic, copy) NSString *account;
13+
@property (nonatomic, copy) NSString *email;
14+
@property (nonatomic, copy) NSString *pn;
15+
@property (nonatomic, copy) NSString *pwd;
16+
@property (nonatomic, copy) NSString *nickName;
17+
@property (nonatomic, copy) NSString *registerTime;
18+
@property (nonatomic, copy) NSString *loginTime; // 登录保护专有
19+
@property (nonatomic, copy) NSString *runEnv;
20+
@property (nonatomic, copy) NSString *moveCount;
21+
@property (nonatomic, copy) NSString *clickCount;
22+
@property (nonatomic, copy) NSString *keyCount;
23+
@property (nonatomic, copy) NSString *operatingTime;
24+
@property (nonatomic, copy) NSString *ip;
25+
@property (nonatomic, copy) NSString *appVer;
26+
@property (nonatomic, copy) NSString *mac;
27+
@property (nonatomic, copy) NSString *idfa;
28+
@property (nonatomic, copy) NSString *referrer;
29+
@property (nonatomic, copy) NSString *userAgent;
30+
@property (nonatomic, copy) NSString *xForwardFor;
31+
@property (nonatomic, copy) NSString *result;
32+
@property (nonatomic, copy) NSString *reason;
33+
@property (nonatomic, copy) NSString *loginType;
34+
@end

GeYanSdk.framework/Info.plist

-420 Bytes
Binary file not shown.
818 Bytes
Binary file not shown.
1.63 KB
Loading
1.94 KB
Loading
Loading
9.77 KB
Loading

0 commit comments

Comments
 (0)