gpt4 book ai didi

iphone - addSubview 和 removeFromSuperview 时的堆增长

转载 作者:行者123 更新时间:2023-12-03 21:04:01 24 4
gpt4 key购买 nike

当我添加 subview 并返回父 View 时,我在“仪器分配”中看到 HEAP GROWTH 和 PERSISTENT 元素时遇到问题。 subview 是一个简单的空白 View ,带有 IB 添加的后退按钮。

在仪器中,当我使用“标记堆”重复相同的操作 6 次时,我会看到这一点。循环是:单击父 View 中的按钮添加 subview 并返回父 View ,然后单击 subview 中的后退按钮:

enter image description here

我认为它会为零!是一个非常简单的 Action 。

我用来在 View1Controller.m 中加载 subview 的代码是:

View2Controller *jv;    
jv = [[View2Controller alloc] initWithNibName:nil bundle:nil];
[self.view addSubview:jv.view];

在 View2Controller.m 中我返回

-(IBAction) Back {
[self.view removeFromSuperview];
self.view = nil;
}

我做错了什么?

提前致谢。

最佳答案

当您使用[self.view removeFromSuperview];时,self.view与其 super View 取消链接,但并未释放。因此内存占用会增加。

为了避免内存泄漏,您应该通过在 View1Controller.m 文件中创建的 View2Controller 实例上调用 release 方法来释放内存。

例如,您可以记住通过设置属性(本例中为 jv 属性)创建的 View2Controller 实例的引用:

View2Controller *view2controllerInstance = [[View2Controller alloc] initWithNibName:nil bundle:nil]; // create the new instance
self.jv = view2controllerInstance; // memorize the reference
[view2controllerInstance release]; // release the property on view2controller
[self.view addSubview:self.jv.view]; // add the subview

jv 属性应使用声明属性来定义,如下所示:

@property (retain, nonatomic) View2Controller *jv;

关于iphone - addSubview 和 removeFromSuperview 时的堆增长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9384744/

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