Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用AVFoundation在我的应用程序中捕获 QR 码。在ios 7.0我看到有关视频捕获的一些主要问题。每次我执行捕获所需的时间越来越长,导致应用程序由于内存泄漏问题而崩溃。
AVFoundation
ios 7.0
它适用于ios 7.1. 这是一个已知的问题?
ios 7.1
为了解决这个问题,我必须在停止时添加以下代码captureSession
captureSession
[_captureSession removeInput:self.captureInput];
我不确定为什么这在 ios 7.1 上没有作为问题出现。