I have a custom iPhone application which doesn't rely on UIKit in any way (it is not linked to UIKit). This means that I'm not using UIApplication and therefore not calling UIApplicationMain.

The problem is that when I create a timer it never fires. The timer is created like that:

[NSTimer timerWithTimeInterval:10 target:self selector:@selector(updateTime) userInfo:nil repeats:TRUE];

I am suspecting that the problem might be run-loop related as after I finish basic initialization in "main()" , I do this:

NSLog(@"Starting application ...");
applicationInstance = [MyApp alloc];
[applicationInstance setMainLayer:mainLayer];
[NSThread detachNewThreadSelector:@selector(runApplication) toTarget:applicationInstance withObject:nil];

CFRunLoopRun();

I reverse-engineered UIKit and noticed that UIApplication does much more things like registering for system events etc. NSTimer might be relying on one of those things. The other thing I've noticed is that in UIApplication's delegate the thread is the same as in main().

How do I get NSTimer to work properly? If it is run-loop related, can someone point out the error? "CFRunLoopRun()" is used to hang up the main thread so the rest of the application can run. I don't think it is right though.

Edit: I think the run loop needs to be configred. Somehow ...

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Your problem is definitely run loop-related; see the NSTimer reference, specifically, the introduction:

Timers work in conjunction with run loops. To use a timer effectively, you should be aware of how run loops operate—see NSRunLoop and Threading Programming Guide. Note in particular that run loops retain their timers, so you can release a timer after you have added it to a run loop.

link|improve this answer
So how do I get it to work? I am really confused right now – Nick Brooks Jul 18 '10 at 19:40
Did you check out the Threaded Programming Guide? The section on "Using Run Loops"? I haven't created my own Run Loop before, but that seems to me to be a good place to start! – Shaggy Frog Jul 18 '10 at 19:47
Yes, I did. It didn't provide any info :( – Nick Brooks Jul 18 '10 at 20:33
"Listing 3-1 Creating a run loop observer" is exactly what you're trying to do -- create a run loop and add an NSTimer -- is it not? – Shaggy Frog Jul 18 '10 at 20:37
feedback

The solution was pretty simple

NSTimer * timeUpdateTimer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(updateTime) userInfo:nil repeats:TRUE]; 
[[NSRunLoop mainRunLoop] addTimer:timeUpdateTimer forMode:NSDefaultRunLoopMode];

Thanks for the tip Shaggy Frog

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.