标签: ios swift qr-code url-scheme wechat
微信是一款受欢迎的iOS应用程序,我推出了这样的二维码扫描页面:
if let url = NSURL(string:"weixin://scanqrcode")?.absoluteURL { UIApplication.shared.openURL(url) }
然而,我需要将QR图像传递给微信的QR扫描仪,我该怎么做?
谢谢!