In my app I declare a timer:
entropy = NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: Selector("tick"), userInfo: nil, repeats: true)
Where entropy is:
var entropy: NSTimer
Then, within ApplicationWillResignActive entropy is invalidated:
main.entropy.invalidate()
Where main is:
let main = ViewController()
But then, when the application becomes active, the timer resumes from where it last was when the app resigned active.
What am I missing here?
Regards, Brandon