Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using multiple NStimers into my cocoa (MAC) application and i have added all of them in NSRunLoopCommonModes separately like below:

NSRunLoop *runloop = [NSRunLoop currentRunLoop];

 updateServerTimeTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(updateServerTime) userInfo:nil repeats:YES];

 [runloop addTimer:updateServerTimeTimer forMode:NSRunLoopCommonModes];

But after some time, my app. gets hung and also UI responds late. It is also slowing down my MAC, Can anyone provide a better approach to use multiple timers continuously within an application

share|improve this question
How many timers are you using? – Jason Coco Oct 16 '12 at 4:56
You're not supposed to add a timer created with that method to a run loop -- it is added automatically. – rdelmar Oct 16 '12 at 5:11
I am using 3 in run loop in appDelegate and one in my view controller. I think that due to the number of timers using in my app, the application is getting hung. – york Oct 16 '12 at 5:13
If i don't add a timer in runLoop then in case of any UI updates (When an alert pops up or table scroll) the timer didn't fires/updates – york Oct 16 '12 at 5:14
If you need to add it to a run loop then use timerWithTimeInterval:target:selector:userInfo:repeats: – rdelmar Oct 16 '12 at 5:17
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.