下面的函数显示了 Instrument (Leak) - Xcode 中的一个泄漏,即使代码注释掉了,如下所示。
void function () {
NSArray *devices = [AVCaptureDevice devices];
// I have used devices here..but I commented to check leak.
devices = nil;
}
负责的图书馆是 AVFoundation。我正在使用ARC。
下面的函数显示了 Instrument (Leak) - Xcode 中的一个泄漏,即使代码注释掉了,如下所示。
void function () {
NSArray *devices = [AVCaptureDevice devices];
// I have used devices here..but I commented to check leak.
devices = nil;
}
负责的图书馆是 AVFoundation。我正在使用ARC。