gpt4 book ai didi

ios - ARC 下的内存管理良好实践

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:19:59 34 4
gpt4 key购买 nike

我的问题更侧重于导航堆栈场景……比方说,我有一个包含多个表格单元格的主视图。每个单元格通过将其推送到导航堆栈来导航到一个新 View ,其 View Controller 将数据和 subview 存储在多个 NSMutableArrayNSArray 中。应用程序的常见流程是在主视图 Controller 和另一个 View Controller 之间来回切换,这是一个常见的场景。考虑到我在 ARC 下,我会很感激关于我在这种情况下执行的内存管理操作的一些建议:

a) 我应该执行哪些“清洁”工作人员?是否建议在 View 消失时清理数组,或者最好保留它们以防用户再次导航到 View ?

b) 关于 View 和 subview ,当 View 消失时我是否也应该“nilify”它们?所有这些,包括那些在 nib 文件中定义的,还是仅那些我在代码中创建的?

谢谢

最佳答案

当弹出一个细节 View 时,好的做法是释放内存。如果在您的详细 View Controller 中(并且只有在那里)您对数据(您的集合)有强引用,它们将在弹出时自动释放。

导航 Controller 保持对推送 View Controller 的强引用,当您弹出它时,它会清除该引用。由于唯一保持对您的集合的强引用的对象是 View Controller 本身,因此它们也会在弹出时被释放。

但是,如果您的一个详细 View Controller 中的数据需要时间设置(例如下载)并且用户频繁地返回和前进到那个 View ,那么好的做法是保持它在内存中。您可以通过在主视图 Controller ( TableView Controller )中保持对详细 View Controller 的强引用来实现这一点。确保只创建一次重 View Controller 并始终推送相同的实例。

如果您保持对大量细节 View Controller 的强引用以使应用程序更快,那么您应该在主 TableView Controller 的 - (void)didReceiveMemoryWarning 中将该引用置零。如果未将 View Controller 压入堆栈,内存将自动回收。 (如果用户想再次输入,请确保重新创建 View Controller )。

问题 b 的答案 不,通常您不会取消您的引用资料。如上所述,如果拥有数组的 Controller 被释放,它将自动释放任何强属性。

如果您想保留繁重的 View Controller ,则主 TableView Controller 中的代码示例:

// MainTableViewController.m

#import "MainTableViewController.h"

@interface MainTableViewController()

@property (nonatomic, strong) UIViewController *myHeavyViewController;

@end

@implementation MainTableViewController

- (UIViewController *)myHeavyViewController
{
//
// A getter for the strong myHeavyViewController property. Creates the
// view controller if needed, or returns it if it already exists.
//
if (!_myHeavyViewController) {
self.myHeavyViewController = ... // Create everything needed
}
return _myHeavyViewController;
}

- (void)didReceiveMemoryWarning
{
//
// Nil property if we get a memory warning
//
self.myHeavyViewController = nil;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath == /* Index path for the heavy view controller */) {

//
// self.myHeavyViewController always calls the getter above
//
[self.navigationController pushViewController:self.myHeavyViewController animated:YES];
}
}

@end

关于ios - ARC 下的内存管理良好实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20115466/

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