美文网首页
iOS开发集成银联云闪付

iOS开发集成银联云闪付

作者: 张天奇天张 | 来源:发表于2023-07-13 09:20 被阅读0次

    下载云闪付SDK

    设置URL Schemes

    info.plist添加白名单

    代码示例

    NSString *tn = @"后台返回的prepayId";

    UIViewController *vc = [[[UIApplication sharedApplication] windows].firstObject rootViewController];

    BOOL resutl = [[UPPaymentControl defaultControl] startPay:tn fromScheme:@"plist里的scheme" mode:@"00" viewController:vc];

                if(!resutl){

                    NSLog(@"失败");

                }else{

                    NSLog(@"成功");

                }

    相关文章

      网友评论

          本文标题:iOS开发集成银联云闪付

          本文链接:https://www.haomeiwen.com/subject/izrpudtx.html