NSXMLParserDelegate 内存问题

发布于 2024-12-02 04:13:21 字数 525 浏览 0 评论 0原文

我通过 Instruments 运行我的应用程序,每次以下设置都会导致内存泄漏(显然)。我看不出这有什么问题。

WeatherParser.h:

...
{
    NSMutableDictionary *results;
}

@property (nonatomic, retain) NSMutableDictionary *results;

WeatherParser.m

- (void)parserDidStartDocument:(NSXMLParser *)parser
{    
    self.results = [[NSMutableDictionary alloc] init];
}

...add values to results

- (void)dealloc
{
    self.results = nil;
    [self.results release];

    [super dealloc];
}

非常感谢您的任何意见。

I'm running my app through Instruments, and every time the following setup causes a memory leak (apparently). I can't see an issue with this.

WeatherParser.h:

...
{
    NSMutableDictionary *results;
}

@property (nonatomic, retain) NSMutableDictionary *results;

WeatherParser.m

- (void)parserDidStartDocument:(NSXMLParser *)parser
{    
    self.results = [[NSMutableDictionary alloc] init];
}

...add values to results

- (void)dealloc
{
    self.results = nil;
    [self.results release];

    [super dealloc];
}

Would greatly appreciate any observations.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

渔村楼浪 2024-12-09 04:13:21

交换这些来阅读:

[self.results release]; 
self.results = nil;

您是在 nil 对象上调用释放,而不是在结果数组上调用释放。

Swap these around to read:

[self.results release]; 
self.results = nil;

you were calling the release on the nil object not on the results array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文