I have some code that is attached to an NSTimer. Around 5 times every second, it interacts with another application (by emulating keystrokes) and when appropriate spits out an NSNotification, that is handled by another piece of code.

While the timer code is running, the UI is unresponsive, so I can't include a 'stop' button that halts the timer.

How should I handle this? A separate process (NSTask right?) or thread? Remember that at unpredictable times, the timer code will need to send some info back for processing.

Thanks.

link|improve this question

72% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Run it in a separate thread. It can report back to the UI occasionally with the performSelectorOnMainThread: method.

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.