up vote 3 down vote favorite
share [g+] share [fb]

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. What is the method to do this?

link|improve this question

feedback

6 Answers

up vote 9 down vote accepted

You might want to consider searching past questions before asking yours...

Those were all on the first page of results for iPhone + background + app. Please do some research first before posting your questions. Also, read this: http://catb.org/~esr/faqs/smart-questions.html

link|improve this answer
I can't stand these type of answers! I've only looked at the first link and it is from Jan 09. This question is Oct 10. A few things have changed since then. How about a current answer to a current question. – Bryan Nov 27 '10 at 16:35
2  
@Bryan No, this answer is from Oct 10, 2009. At the time, iOS 3.1.2 was the current OS. iOS 4, which allowed backgrounding of processes, was not released until June of 2010. Please be sure that you have all the facts before you start raging and calling people names. en.wikipedia.org/wiki/IOS_version_history – Dave DeLong Nov 27 '10 at 17:41
Give a real answer. Summarize your links. I've seen the same question get 10x better answers simply because it was asked at a later date. You act like just because an question was asked before that it should never be asked again. A lot of people like you do it. Pompous IMO. Thanks for the facts bro ;) – Bryan Nov 27 '10 at 17:48
1  
Google this - "how to run my application in background in iphone?".. What date do you see? – Bryan Nov 27 '10 at 17:52
1  
@Dave - You are right and your logic makes perfect sense. I saw the google date and assumed it was correct. My bad. I am using another of your answers right now. stackoverflow.com/questions/1448804/… Sorry about the confusion and angst. Thanks for being an exemplary Stack Overflow user. I appreciate it.:) And you are a really nice guy. Thanks for your patience. – Bryan Nov 28 '10 at 4:46
show 5 more comments
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

May be the link will Help bcz u might have to implement the code in Appdelegate in app run in background method .. Also consult the developer.apple.com site for application class Here is link for runing app in background http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/BackgroundExecution/BackgroundExecution.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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