微信支付

1.从微信官方下载api

 2.在 Linked Frameworks and Libraries 添加以下文件


3.注册appid

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    //微信支付
    [WXApi registerApp:@"wx...."];
    return YES;
}

4.监听返回

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
    return  [WXApi handleOpenURL:url delegate:self];
}

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
    return [WXApi handleOpenURL:url delegate:self];
}
// ios: 9.0以后使用新API接口
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
{
    return [WXApi handleOpenURL:url delegate:self];
}  
//监听微信回调结果
#pragma mark - WXApiDelegate
- (void)onResp:(BaseResp *)resp
{
    if([resp isKindOfClass:[PayResp class]]){
        
        //支付返回结果
  
        switch (resp.errCode) {
            case WXSuccess:
                 [self WXPaySuccess];
                strMsg = @"支付结果:成功!";
                DLog(@"支付成功-PaySuccess,retcode = %d", resp.errCode);
                break;
                
            default:
               
                DLog(@"错误,retcode = %d, retstr = %@", resp.errCode,resp.errStr);
                break;
        }
    }
}

  5.发送参数给微信

- (void)wxPaySend:(NSDictionary*)dictionary{
    //调起微信支付
    PayReq* req = [[PayReq alloc] init];
    req.openID = [dictionary objectForKey:@"openID"];
    req.partnerId = [dictionary objectForKey:@"partnerid"];
    req.prepayId = [dictionary objectForKey:@"prepayid"];
    req.nonceStr = [dictionary objectForKey:@"noncestr"];
    req.timeStamp = [[dictionary objectForKey:@"timestamp"] intValue];
    req.package  = @"Sign=WXpay";//这个参数是固定的
    req.sign  = [dictionary objectForKey:@"sign"];
    [WXApi sendReq:req];
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值