I am working on a simple timer application, and I created an NSStatusItem with a menu, and I have some NSTextField labels that update timer labels ( http://cld.ly/e81dqm ), but when I click on the status item, NSTimer stops (and stops updating labels) ..... how can I get around this problem?
EDIT: here is the code that starts the timer:
timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(timerDidUpdate:) userInfo:nil repeats:YES];
objective-c cocoa nstimer
nanochrome
source share