如何在AVcapture Session中启动一个动作

时间:2017-11-11 23:46:53

标签: ios swift

我写了一个扫描条形码的代码。我想在扫描条形码时显示视图。这是我的条码扫描器代码

    func captureOutput(_ captureOutput: AVCaptureOutput!, didOutputMetadataObjects metadataObjects: [Any]!, from connection: AVCaptureConnection!) {

    // Check if the metadataObjects array is not nil and it contains at least one object.
    if metadataObjects == nil || metadataObjects.count == 0 {
        qrCodeFrameView?.frame = CGRect.zero
        messageLabel.text = "No QR/barcode is detected"
        return
    }
    //Get metadata object
    let metadataObj = metadataObjects[0] as! AVMetadataMachineReadableCodeObject
    if supportedCodeTypes.contains(metadataObj.type) {
        //if the found metadata is equal to the QR code metadata then update the status label's text and set the the bounds
        let barCodeObject = videoPreviewLayer?.transformedMetadataObject(for: metadataObj)
        qrCodeFrameView?.frame = barCodeObject!.bounds

        if metadataObj.stringValue != nil {
            var productbarcode = metadataObj.stringValue
            messageLabel.text = productbarcode
            print("Barcode detected")

        }
    }
}

我要显示的视图是在func Setupproductcontainer()中设置的。当我将其添加到viewDidLoad时它工作正常,但我不希望它显示直到检测到条形码。所以我尝试在Setupproductcontainer()语句下添加print("Barcode detected"),但没有任何反应。如何在检测到条形码时启动Setupproductcontainer()

1 个答案:

答案 0 :(得分:0)

您可能正在尝试在后台线程上进行UI更改。

我建议你在DispatchQueue.main代码块中调用你的函数来在主线程上运行它。您应该这样做的原因是在UI上进行的每个更改都应该在主线程中完成。如果您尝试在后台线程中更改它,则不会发生任何事情。

DispatchQueue.main.async {
    self.Setupproductcontainer() 
}