- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我的问题更侧重于导航堆栈场景……比方说,我有一个包含多个表格单元格的主视图。每个单元格通过将其推送到导航堆栈来导航到一个新 View ,其 View Controller 将数据和 subview 存储在多个 NSMutableArray
和 NSArray
中。应用程序的常见流程是在主视图 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/
嗨,我正在考虑开发一种文件传输程序,想知道我是否想要尽可能好的加密,我应该使用什么? 我会用 C# 开发它,所以我可以访问 .net 库 :P在我的 usb 上有一个证书来访问服务器是没有问题的,如果
我创建的这个计算两个数组的交集是线性的方法的复杂度(在良好、平均、最差的情况下)? O(n) public void getInt(int[] a,int[] b){ int i=0; int
我已经能够使用 RTCPeerConnection.getStats() API 获得 WebRTC 音频调用的各种统计信息(抖动、RTT、丢包等)。 我需要将整体通话质量评为优秀、良好、一般或差。
基本问题: 如果我正在讲述/修改数据,我应该通过索引硬编码索引访问文件的元素,即 targetFile.getElement(5);通过硬编码标识符(内部翻译成索引),即 target.getElem
在 Linux 上,我想知道要调用什么“C”API 来获取每个 CPU 的统计信息。 我知道并且可以从我的应用程序中读取 /proc/loadavg,但这是系统范围的负载平均值,而不是每个 CPU 的
在客户端浏览器中使用 fetch api,GET 或 POST 没有问题,但 fetch 和 DELETE 有问题。它似乎将 DELETE 请求方法更改为 OPTIONS。 大多数研究表明是一个cor
我是一名优秀的程序员,十分优秀!