NSTimer 内存泄漏?

发布于 2024-10-31 20:55:39 字数 962 浏览 0 评论 0原文

我正在开发一个应用程序,它基本上一切正常并且运行良好。但显然还不够好。运行“Leaks”工具时,我发现 NSTimer 存在大量泄漏。

NSTimer 通过 UISwitch 启动和停止。每次将开关切换到“OFF”时都会发生内存泄漏,

//PlayView.h
@interface PlayView : UIViewController {
  NSTimer *autoTimer;   
  // other things
}

@property (nonatomic, retain) NSTimer *autoTimer;
// etc...


//PlayView.m
#import "PlayView.h"
@implementation PlayView
@synthesize autoTimer;  


- (IBAction) toggleEnabledForSwitch1: (id) sender {  
    if (switch1.on) {
        self.autoTimer = [NSTimer scheduledTimerWithTimeInterval:0.5
                target:self
                selector:@selector(updateCounter:)
                userInfo:nil
                repeats:YES];

    }

    else {
        restart = 1;
        [self.autoTimer invalidate];
        self.autoTimer = nil;       
    [self.autoTimer release];
    }
}


- (void)updateCounter:(NSTimer *)theTimer {
  // Do a bunch of stuff
}

这可能是什么原因造成的?我确信这一定是简单的事情,但我只是想念它......

I'm developing an app and its essentially all up and running well. Obviously not well enough, though. When running the "Leaks" instrument, I'm seeing a lot of leaks from my NSTimer.

The NSTimer is started and stopped with a UISwitch. The memory leak occurs each time the switch is flipped to "OFF"

//PlayView.h
@interface PlayView : UIViewController {
  NSTimer *autoTimer;   
  // other things
}

@property (nonatomic, retain) NSTimer *autoTimer;
// etc...


//PlayView.m
#import "PlayView.h"
@implementation PlayView
@synthesize autoTimer;  


- (IBAction) toggleEnabledForSwitch1: (id) sender {  
    if (switch1.on) {
        self.autoTimer = [NSTimer scheduledTimerWithTimeInterval:0.5
                target:self
                selector:@selector(updateCounter:)
                userInfo:nil
                repeats:YES];

    }

    else {
        restart = 1;
        [self.autoTimer invalidate];
        self.autoTimer = nil;       
    [self.autoTimer release];
    }
}


- (void)updateCounter:(NSTimer *)theTimer {
  // Do a bunch of stuff
}

What could be causing this? I'm certain it must be something simple and I'm just missing it...

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文