iPhone编程中的内存泄漏?

发布于 2024-12-07 06:36:19 字数 93 浏览 1 评论 0 原文

任何人都可以帮助我理解此图像中的问题

在此处输入图像描述

Can any one help me to understand the problem in this image

enter image description here

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

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

发布评论

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

评论(3

想念有你 2024-12-14 06:36:19

正如分析器所说,您正在 647 行上分配 locs,使用
NSMutableArray *locs = [[NSMutableArray alloc] init]; 并且稍后不会在块中释放它。您应该释放它,或者您可以使用方便的构造函数来获取自动释放的数组,如下所示, NSMutableArray *locs = [NSMutableArray array];

我建议您仍然简化您的对此的代码,

NSMutableArray *annotations = (NSMutableArray *)[map annotations];
[annotations removeObject:[map userLocation]];
[map removeAnnotations:annotations];

As the analyzer says, you are allocating locs on line 647, using
NSMutableArray *locs = [[NSMutableArray alloc] init]; and not releasing it later in the block. You should release it or you can use convenience constructor to get the autoreleased array like this, NSMutableArray *locs = [NSMutableArray array];

I'd suggest you to still simplify your code to this,

NSMutableArray *annotations = (NSMutableArray *)[map annotations];
[annotations removeObject:[map userLocation]];
[map removeAnnotations:annotations];
沫雨熙 2024-12-14 06:36:19

您需要在最后释放 locs。您已经分配并初始化了它,给它的引用计数为 1,然后您应该释放它以将引用计数更改为 0。请参阅 http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/MemoryMgmt/ 了解更多信息。

You need to release locs at the very end. You have alloc'ed and init'ed it, giving it a reference count of 1, an then you should release it to change the reference count to 0. Refer to http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/MemoryMgmt/ for more info.

南薇 2024-12-14 06:36:19

您已经初始化了 locs 数组,然后必须在关闭该函数之前释放该数组:[locs release];locs=nil;

You have initialize the locs array then you have to release that array before closing that function: [locs release];locs=nil;

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