Is it possible to call my function in the background after certain interval programmatically in iPhone SDK development? I want to call one particular function in the backgro
To call the function on the main thread, use an NSTimer.
To call it on another thread, create an NSOperation and set up an NSOperationQueue to call it.