gpt4 book ai didi

iphone - iphone内存泄漏

转载 作者:行者123 更新时间:2023-11-28 19:24:14 25 4
gpt4 key购买 nike

我遇到内存泄漏...

在这个特定的声明中

[item setObject:self.currentTitle forkey:@"title"]; ...

我已经为 item 释放了 dealloc 函数的内存,并且 curentTitle 被声明为

self.currentTitle=[[NSMutableString alloc]init];

但仍然显示泄漏

最佳答案

您的属性(property)是如何申报的?

如果它被声明为retain,那你就有了内存泄漏......

@property( retain, readwrite ) NSMutableString * self.currentTitle;

在这种情况下你应该这样做:

self.currentTitle = [ [ [ NSMutableString alloc ] init ] autorelease ];

关于iphone - iphone内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5743371/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com