Spartacus
Spartacus

Reputation:

Application on iPhone Startup

How can i make my application start on the iPhone startup?

Upvotes: 0

Views: 2371

Answers (4)

Midhun MP
Midhun MP

Reputation: 107121

You asked this question on 10th August 2010.

Now it's 13 November 2012. I'm adding this answer for future people who have the same question.

Now in iOS 6. There is a built in feature called guided access. You can achieve this feature using guided access. Still now you can't do this through code.

Please check these links:

enable-guided-access-ios

tip-how-to-turn-on-guided-access-in-ios-6-put-ipad-into-guest-user-mode

Upvotes: 1

yonel
yonel

Reputation: 7865

Only some very specific background applications can be started right from the iphone startup. This includes VOiP applications for instance:

"Including the voip value in the UIBackgroundModes key lets the system know that it should allow the application to run in the background as needed to manage its network sockets. An application with this key is also relaunched in the background immediately after system boot to ensure that the VoIP services are always available."

As taken from:

http://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html#//apple_ref/doc/uid/TP40007072-CH5-SW15

Upvotes: 0

mmc
mmc

Reputation: 17404

If you plan on distributing your app via the App Store, this is not possible.

As Randolfo mentions, many things are possible via jailbroken installations.

Upvotes: 1

Randolpho
Randolpho

Reputation: 56391

You can only do it with a jailbroken phone.

Upvotes: 0

Related Questions