打开从SFSafariViewController中的QR代码扫描的URL

时间:2017-08-03 09:06:13

标签: swift xcode8 qr-code uialertcontroller sfsafariviewcontroller

我正在尝试让我的应用从qr代码打开扫描的网址。我制作了一个qr代码扫描程序,但它只将扫描的qr代码的值复制到粘贴板。我试图在SFSafariViewController中打开它。 而不是“复制”选项,我想让它“打开”并实际打开扫描的网址。

这是我的代码

func captureOutput(_ captureOutput: AVCaptureOutput!, didOutputMetadataObjects metadataObjects: [Any]!, from connection: AVCaptureConnection!) {
    if metadataObjects != nil && metadataObjects.count != 0
    {
        if let object = metadataObjects[0] as? AVMetadataMachineReadableCodeObject
        {
            if object.type == AVMetadataObjectTypeQRCode
            {
                let alert = UIAlertController(title: "QR Code", message: object.stringValue, preferredStyle: .alert)
                alert.addAction(UIAlertAction(title: "Retake", style: .default, handler: nil))
                alert.addAction(UIAlertAction(title: "Copy", style: .default, handler: { (nil) in
                    UIPasteboard.general.string = object.stringValue

                }))
                present(alert, animated: true, completion: nil)

            }
        }
    }

}

2 个答案:

答案 0 :(得分:1)

使用safariviewController非常简单

首先,您必须导入safariservices,然后使用URL

显示safaricontroller

基本代码是

import SafariServices

func loadSafari(url : String){
  guard let url = URL(string: url) else { return }

  let safariController = SFSafariViewController(url: url)
  present(safariController, animated: true, completion: nil)
}

将此代码放在您的类中,并在捕获输出中调用该函数

func captureOutput(_ captureOutput: AVCaptureOutput!, didOutputMetadataObjects metadataObjects: [Any]!, from connection: AVCaptureConnection!) {
if metadataObjects != nil && metadataObjects.count != 0
{
    if let object = metadataObjects[0] as? AVMetadataMachineReadableCodeObject
    {
        if object.type == AVMetadataObjectTypeQRCode
        {

                UIPasteboard.general.string = object.stringValue
                loadSafari(url: object.stringValue)

            }))
            present(alert, animated: true, completion: nil)

        }
    }
}

}
单击完成后将关闭safariController并让用户导航回上一个viewcontroller。

我希望这会有所帮助。让我知道它是怎么回事。

答案 1 :(得分:0)

您的代码没有显示尝试使用SFSafariViewController的迹象。你尝试过类似下面的东西吗?

import SafariServices

if let url = URL(string: object.stringValue) {
    let browser = SFSafariViewController(url: url)
}

这不会让它神奇地出现,您仍然需要做一些工作才能将它呈现给用户,例如:

presentViewController(browser, animated: true, completion: nil)