3

我在 iPhone SDK 中的新 AVFoundation 类中遇到了一种奇怪的行为。

我有一个用于拍照的 AVCaptureStillImageOutput,我正在根据自己的喜好设置它的 outputSettings。代码如下:

 AVCaptureStillImageOutput *stillImageOutput = [[[AVCaptureStillImageOutput alloc] init] autorelease];
[stillImageOutput setOutputSettings:[NSDictionary dictionaryWithObject:AVVideoCodecJPEG forKey:AVVideoCodecKey]];
[self setStillImageOutput:stillImageOutput];

(stillImageOutput 属性定义为“retain”)

我偶然发现了泄漏,在setOutputSettings行上有 100% 的泄漏故障。我相信我仅限于附加代码中的内存管理指南,但它仍然在泄漏。

我的解决方案是

[self.stillImageOutput setOutputSettings:nil];

在 dealloc 中,就在之前

[self setStillImageOutput:nil];

泄漏确实停止了,但看起来很奇怪。StillImageOutput的释放不应该也释放它的outputSettings属性吗?

无论如何,如果其他人遇到这种情况,我想我应该分享我的解决方案。

干杯!
奥德。

4

1 回答 1

0

是的,stillImageOutput 的释放也应该释放它的 outputSettings 属性。要么是 Apple 的错误(应该让他们知道,你的用例非常简单),要么删除你的行,看看除了你的类之外是否有任何东西挂在那个 stillImageOutput 对象(它持有 outputSettings)上。

于 2012-03-28T14:38:39.673 回答