gpt4 book ai didi

iphone - 如何处理只读属性的内存

转载 作者:行者123 更新时间:2023-11-29 11:12:49 26 4
gpt4 key购买 nike

我的一个类(class)有以下属性(property)

@property (nonatomic, retain, readonly) NSMutableArray *children;

我有以下方法为这个属性分配内存。

- (NSMutableArray *)children {
if (!children) {
children = [[NSMutableArray alloc] initWithCapacity:1];
}

return children;
}

当我在 xcode 中运行探查器时,它显示我在上述方法中有内存泄漏。我对在这种情况下释放内存感到困惑。如果我按如下方式将它与自动释放一起使用,是否可以。

children = [[[NSMutableArray alloc] initWithCapacity:1] autorelease];

有人可以帮我解决这个问题吗

最佳答案

你会在你的 dealloc 中释放 child 吗?如果不是,那是你的问题!

- (void)dealloc {
[children release];
...
[super dealloc];
}

关于iphone - 如何处理只读属性的内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10792781/

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