我正在使用zxcapture。我的程序经常在以下代码中指出的特定位置崩溃。

- (void)dealloc {
    if (_lastScannedImage) {
        CGImageRelease(_lastScannedImage); // crash here
    }

    if (_session && _session.inputs) {
        for (AVCaptureInput *input in _session.inputs) {
            [_session removeInput:input];
        }
    }

    if (_session && _session.outputs) {
        for (AVCaptureOutput *output in _session.outputs) {
            [_session removeOutput:output];
        }
    }
}

最佳答案

[self.capture.layer removeFromSuperlayer];
[self.capture stop];
[self dismissViewControllerAnimated:YES completion:nil];


解决了这个问题。

关于ios - 通常会在[ZXCapture dealloc]崩溃,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29700187/

10-13 06:35