nstimer

Please confirm: NSTimer is to repeatedly make an event occur at intervals.

I'm trying to make an iOS app. As part of the app, I want a UIScrollView to scroll every X seconds. I believe that I need to use NSTimer. Is this correct? ...

Is it possible to have a timer running in background?

I need to have a timer running in the background that is called by the application did enter background method. I am having some trouble. When I enter background, it doesnt do anything. Here is my code. - (void)applicationDidEnterBackground:(UIApplication *)application { bcheckingTimer = [NSTimer scheduledTimerWithTimeInterval:5 ta...