由于此错误,我无法切换到另一个视图控制器。我想在成功扫描QR码后切换到另一个视图控制器。

2015-01-27 17:59:16.093 *[5416:1860144] Warning: Attempt to present <*.SuccessViewController: 0x144e38a20> on <*.MethodViewController: 0x144e2b960> whose view is not in the window hierarchy!

我的密码
@IBAction func btnQrCode(sender: AnyObject) {
    reader.modalPresentationStyle = .FormSheet
    reader.delegate               = self

    reader.completionBlock = { (result: String?) in
    if result != nil {
        let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)

        let successViewController = storyBoard.instantiateViewControllerWithIdentifier("successView") as SuccessViewController
        self.presentViewController(successViewController, animated:true, completion:nil)

    }

    presentViewController(reader, animated: true, completion: nil)
    }
}

附注:我正在使用QRCodeReader插件https://github.com/yannickl/QRCodeReader.swift

最佳答案

您可以尝试关闭阅读器(QRCodeReader)后显示模态视图控制器吗?文档中有一个用于QRCodeReader的回调,称为didScanResult

https://github.com/yannickl/QRCodeReader.swift

func reader(reader: QRCodeReader, didScanResult result: String) {
   self.dismissViewControllerAnimated(true, completion: { () -> Void in

       // use the result variable here.

        let storyBoard : UIStoryboard = UIStoryboard(name: "Main", bundle:nil)
        let successViewController = storyBoard.instantiateViewControllerWithIdentifier("successView") as SuccessViewController
        self.presentViewController(successViewController, animated:true, completion:nil)

   })
}

reader.completionBlock删除代码。

关于ios - Swift-警告:在演示过程中尝试在*上演示*,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28183940/

10-12 17:32