0

I want to run my iPhone application in the background. Please suggest if there is any way to do this.

Carl Veazey
  • 18,392
  • 8
  • 66
  • 81
Aishwarya
  • 1,587
  • 3
  • 14
  • 9

3 Answers3

7

Applications developed using the iPhone SDK can only run in the foreground on the iPhone. Only Apples applications (iTunes, email, etc) can run in the background.

Consider using Push notification to update the application icon or display a message to the user if you want to do something when the user is not running your application.

Robert Christie
  • 20,177
  • 8
  • 42
  • 37
2

You can't. Only some of the Apple apps are allowed to do this. It's a platform restriction.

NotMe
  • 87,343
  • 27
  • 171
  • 245
1

You can only do it with applications released for jailbroken iPhones, not those sold through the App Store. For example Backgrounder (available through Cydia) allows you to run any application as a background app:

http://code.google.com/p/iphone-backgrounder/wiki/Documentation

Adrian Kosmaczewski
  • 7,956
  • 4
  • 33
  • 59