I have a simple OSX Menubar application, the status item has a menu attached to it and I have a menu item that can manually send a fire to a NSTimer.
I’d like for that menu item to display the number of seconds until the next time the timer will be fired. Is there a way to get the amount of time until the next fire or the time at which the NSTimer will be next fired?
NSTimer has fireDate wich returns a NSDate. NSDate has timeIntervalSinceNow.