增加微信登录授权和支付宝登录,并更新支付宝为最新的SDK,银联和微信也已经是最新的啦
2017.8.26 18:00更新
好久没写文章了,最近闲来无事but每天晚上还特么的加班,就想写点什么。看到项目中关于支付的代码写的乱七八糟的,其实还有好多以前写的low比代码😂,有时间再整理整理了。公司多个项目用了第三方支付,所以就先考虑封装下支付,以后项目要集成第三方支付只要三分钟,对于其demo中的代理方法二次封装时候全部采用block回调处理,Soeasy有木有。好了,进入正题,show time!
demo地址(不喜勿喷)
移动支付—微信、支付宝、银联集成整理
啥,你要图?
开发前你需要:
1、需要在 target-> build settings -> other linker flags ->写入-ObjC -all_load 如下图:
2、在target->info.plist ->URL Types 添加url schemes,来实现app的跳转 如下图:
3、处理好iOS 9.0以后的(https:// )问题在target->info.plist中添加如下图:
接入中如果遇到什么问题请留言,同样有好的建议也请留言。注:为了保护他人利益,项目中的支付配置信息做了修改。
微信接入
1、将项目中的“微信支付”拖入你的工程中。
2、添加依赖库:SystemConfiguration.framework, libz.dylib, libsqlite3.0.dylib, libc++.dylib, Security.framework, CoreTelephony.framework, CFNetwork.framework
支付宝接入
1、将项目中的“支付宝支付”拖入你的工程中。
2、添加依赖库:Foundation.framework UIKit.framework CoreGraphics.framework CoreText.framework QuartzCore.framework CoreTelephony.framework CoreMotion.framework
3、在你的Xcode里的header search paths 里添加支付宝SDK(openssl的路径);格式如下 $(PROJECT_DIR)/文件夹名 (这里说一下,直接点击openssl,然后showinfinder,然后command + i 查看路径,把得到路径的工程名字以后的部分加在文件夹名这OK eg:$(PROJECT_DIR)/AllPayDemo/支付宝支付/AliPay
银联接入
1、将项目中的“银联支付”拖入你的工程中。
2、添加依赖库:CFNetwork.framework、SystemConfiguration.framework 、lib、libPaymentControl.a
3、添加协议白名单需要在工程对应target->info.plist文件中,添加LSApplicationQueriesSchemes Array并加入uppaysdk、uppaywallet、uppayx1、uppayx2、uppayx3五个item。
在接入完成后command+ build没有问题,那么恭喜你,接入成功了。下面讲怎么调起这些功能。
接入到项目中
1、在AppDelegate中倒入头文件,如下图:
2、唤起支付 利用PayToolsManager
注:银联支付传入的ViewController不要传入self,可以传rootVC或者NaVc,不然你就gg了,会发现支付界面释放不了,官方demo也是这样的情况,不走delloc,会导致一系列未知问题。
demo地址(不喜勿喷)
移动支付—微信、支付宝、银联集成整理
=============不要看我,我是分割线===========
补充 ---iOS-9.0后跳支付左上角返回键解决办法
如下图所示:
图上红色标记的地方就是那个返回键,现在介绍详细解决办法:
在点击返回键的时候,支付宝、微信就会退回发起支付的app,返回app必定会走这个方法:
//app进入前台情况下 会触发
- (void)applicationWillEnterForeground:(UIApplication *)application {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}
so,是不是有点头绪了?
在PayViewController.m支付界面下的代码
注:为什么延时?
UIApplicationWillEnterForegroundNotification比微信或者支付宝的SDK回调先执行,因为handleOpenURL比WillEnterForeground晚执行
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
self.title = @"支付列表";
// Do any additional setup after loading the view.
[self setUI];
//监听app进入前台下
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(ApplicationWillEnterForegroundNotification:) name:UIApplicationWillEnterForegroundNotification object:nil];
}
//处理 点击返回app 监听消息
- (void)ApplicationWillEnterForegroundNotification:(id)not {
self.hasCallBack = NO; //默认是没回调的
//延时执行 因为该消息比支付的SDK回调先执行
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
//支付的SDK没有回调
if (!self.hasCallBack) {
//查询订单信息
[self requestOrderInfo];
}
});
}
//查询后台接口 订单信息
- (void)requestOrderInfo {
/* 编写代码逻辑
比较返回的订单信息和支付单状态进行对比,如果状态是已付款,那就可以跳转到支付成功的界面啦
*/
}
调用支付SDK的时候,标记是否回调hasCallBack
[[PayToolsManager defaultManager] startAliPayWithOrderSn:@"201703292002519" orderName:@"支付宝订单名称" orderDescription:@"商品描述" orderPrice:@"0.01" notiURL:@"http://o2oappserv.xiuche580.com/payment/notify/UnionPayNotify.do" paySuccess:^{
//回调记录为YES
weakSelf.hasCallBack = YES;
[weakSelf.view makeToast:@"Alipay支付成功"];
} payFaild:^(NSString *desc) {
//回调记录为YES
weakSelf.hasCallBack = YES;
[weakSelf.view makeToast:desc];
}];
别忘了释放通知哦
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
//银联容易释放不了,打印下
NSLog(@"-----delloc-----");
}
以上是个人的想法目前项目的做法,有更好的想法,欢迎指正和讨论,或者gitHub提issue 🙃