vote up 0 vote down star
1

i want to run my timer in background even when app is not running.because i want to get gps cordinate of the user after some time interval.waht is the method to do this?

flag

5 Answers

vote up 9 vote down

I don't think this is allowed in the iPhone programming paradigm. The operating system is capable of running background tasks but ordinary iPhone apps are not permitted to launch anything like this.

link|flag
vote up 4 vote down

The Apple Push Notification service is not, in fact, only available to a few developers. It is currently in wide-spread use.

Take a look at this:

http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UIApplication%5FClass/Reference/Reference.html

The "Registering for remote notifications" section specifies how to register for push notifications. The other end is set up in the iPhone developer portal.

link|flag
vote up 1 vote down

Not possible without jailbreak - iphone sdk apps can only run while on screen.

link|flag
vote up 0 vote down

You could contact the people who made this

http://appadvice.com/appnn/2008/10/run-iphone-apps-in-the-background/

It only works on jail broke phones, another way it to use push notification from our servers for timed tasks. Why dont you use this, to wake up the app get the GPS then send it back to sleep. Better for batteries too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.