我是否必须保留/释放从 NSDictionary 获取的值?

发布于 2024-12-01 00:47:55 字数 461 浏览 0 评论 0原文

通常我会做这样的事情(如下)来获取我需要的值:

NSDictionary *state = [notification.userInfo objectForKey:@"state"];
[self.tabBarItem setBadgeValue:[state objectForKey:@"short"]];

但是对于从 NSDictionary 获取的值是否值得保留/释放?像这样:

NSDictionary *state = [[notification.userInfo objectForKey:@"state"] retain];
[self.tabBarItem setBadgeValue:[state objectForKey:@"short"]];
[state release];

它对内存更友好吗?或者我不应该打扰并只信任自动释放池来完成它的工作?

Normally I do something like this (below) to get value I need:

NSDictionary *state = [notification.userInfo objectForKey:@"state"];
[self.tabBarItem setBadgeValue:[state objectForKey:@"short"]];

But does it worth to do retain/release for values taken from NSDictionary? Something like this:

NSDictionary *state = [[notification.userInfo objectForKey:@"state"] retain];
[self.tabBarItem setBadgeValue:[state objectForKey:@"short"]];
[state release];

Is it more memory friendly? Or I shouldn't bother and just trust to autorelease pool to do its job?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我闹别瞎闹 2024-12-08 00:47:55

不,这样做没有意义。 [notification.userInfo objectForKey:@"state"] 的结果始终是一个自动释放的对象;如果您添加额外的 retainrelease,那不会改变任何东西。

No, there's no point in doing that. The result of [notification.userInfo objectForKey:@"state"] is always an autoreleased object; if you add an extra retain and release, that won't change anything.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文