我有一个像这样调用的UIAlertView
let ac = UIAlertController(title: "Load Discovered!", message: "Please click confirm to confirm the collection of load: "+code, preferredStyle: .alert)
ac.addAction(UIAlertAction(title: "OK", style: .default))
present(ac, animated: true)
这表现在AVCaptureVideoPreviewLayer
我的问题是,它出现时几乎立即就会自动消失,它不会等待OK输入。
我认为这与它在AVCaptureVideoPreviewLayer
之上显示的事实有关我不知道该怎么办