iOS13应做一下特殊处理。 在SceneDelegate.swift文件中实现以下方法即可收到回调 @available(iOS 13.0, *) func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) { print(URLContexts) guard let context = URLContexts.first else { return } WXApi.handleOpen(context.url, delegate: self) } @available(iOS 13.0, *) func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) { print(URLContexts) guard let context = URLContexts.first else { return } WXApi.handleOpen(context.url, delegate: self) }
iOS13 微信支付完成后,不走处理支付结果的回调!iOS13新建项目中,微信支付成功后,点击微信支付完成返回按钮,回到当前app ,没有处理appdelelgate.m 中的 openURL 和 handleOpenURL 方法,无法完成支付结果的处理,是怎么回事啊 ?
2020-03-19