An Objective C class for creating timer objects.
I've been using selectors for a while, and even after migrating to Swift I was able to use them without …
swift nstimerI have a something like this: NSTimer* timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(updateCountdown) userInfo:nil repeats:YES]; I …
objective-c xcode iphone-sdk-3.0 nstimer invalidationI'm using an NSTimer like this: timer = [NSTimer scheduledTimerWithTimeInterval:30.0f target:self selector:@selector(tick) userInfo:nil repeats:YES]; Of …
objective-c automatic-ref-counting nstimer retain-cycleI want to be able to schedule three small events in the future without having to write a function for …
iphone objective-c nstimerI need a long running task to be done in background as well as in foreground. This updates the core …
iphone ios5 nstimer nsthread uiapplicationdelegateI'm working with an app that processes device motion events and updates interface in 5 second increments. I would like to …
ios objective-c cocoa-touch time nstimerI am wondering if someone can explain why dispatching back to the main queue and creating a repeating NSTimer I …
ios objective-c nstimer nsrunloopI'm here because a didn't find any solutions for my issue :( I'm doing an simple application in which i have …
ios background scheduling nstimer foregroundI am using [NSTimer scheduledTimerWithTimeInterval:0.1f target:self selector:@selector(update) userInfo:nil repeats:YES]; I want to stop calling …
iphone ipad nstimer