有关使用泄漏仪器和修复的问题

发布于 2025-01-06 18:13:21 字数 591 浏览 0 评论 0原文

我有这段代码:

TImageView *thumbnailView  = [[TImageView alloc] initWithFrame:self.frame];
   thumbnailView.delegate = self;
    thumbnailView.hidden = NO;
    thumbnailView.contentMode = UIViewContentModeScaleAspectFill;
    thumbnailView.clipsToBounds = YES;
    thumbnailView.urlPath = URLPath;

    [self addSubview:thumbnailView];

    [thumbnailView release];

其中,TImageView 是一个自定义类

现在,当使用泄漏工具时,例如,一次泄漏,如果我单击扩展详细信息,

我会看到 99.6%内存泄漏是因为这一行:

    thumbnailView.urlPath = URLPath;

我没有线索。有什么帮助吗?

I have this piece of code :

TImageView *thumbnailView  = [[TImageView alloc] initWithFrame:self.frame];
   thumbnailView.delegate = self;
    thumbnailView.hidden = NO;
    thumbnailView.contentMode = UIViewContentModeScaleAspectFill;
    thumbnailView.clipsToBounds = YES;
    thumbnailView.urlPath = URLPath;

    [self addSubview:thumbnailView];

    [thumbnailView release];

where, TImageView is a custom class

Now, when using the leaks instrument, for one instance, one leak, if I click on the extended detail,

I see that 99.6% of memory leakage is because of this line:

    thumbnailView.urlPath = URLPath;

I have got no clue. Any help ?

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

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

发布评论

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

评论(1

生死何惧 2025-01-13 18:13:22

有两个可能的原因:

  1. 您没有释放 urlPath 属性(请参阅 此问题
  2. 您不会发布 URLPath(不要使用此类名称!)

There are two possible reasons:

  1. You're not releasing urlPath attribute (see this question)
  2. You're not releasing URLPath (don't use such names!)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文