This is getting really boring tense. I've answered two different questions now, both explaining how VOIP apps don't start on start-up, yet people seem to think they do.

I'm not 100% sure myself, someone linked me to a part of the apple docs, which doesn't really mention anything about auto-starting of apps.

I was originally going on prior knowledge and this answer, but after another person saying that they do, I'm really not sure.

As far as I'm aware, apps only react to push notifications, and can't be launched into the background when a device is turned on.

Can we please clarify whether it is possible to auto-start an app or not?

link|improve this question

3  
Boring? No way. It's getting really tense. – Costique Feb 15 at 20:32
@Costique updated accordingly :) – Alex Coplan Feb 15 at 20:35
I don't think they do, look at Skype for example. There are even "jailbreak" apps that start these kind of apps for you. – fbernardo Feb 15 at 20:37
1  
If you use any VoIP apps on your iPhone (e.g. Skype), you could restart the device, attach it to the computer, launch Instruments and see if it's already running. My guess is that VoIP apps are registered with launchd and launched on demand. Of course, I may be wrong. – Costique Feb 15 at 20:41
feedback

3 Answers

up vote 4 down vote accepted

Take a look at the UIBackgroundModes section in this document - it seems to state that adding the voip key will autostart an app on boot.

Edit: a sample app seems to confirm this behavior.

link|improve this answer
This is interesting, can someone please confirm this? Are there real example apps that use this feature? – sch Feb 15 at 22:57
Just wrote one (and blogged about it, if you don't want to dig into code): github.com/lithium3141/BootLaunch and lithium3141.com/2012/02/18/…, respectively. – Tim Feb 18 at 8:22
feedback

You can not launch an application without user interaction. The user has to click on the app icon, on push notifications, on a custom link. May be there are other ways I am not aware of, but even if they exist, they require user interaction to intentionally launch the app.

Edit

It turns out, as Tim mentioned, there might be an exception for VOIP apps.

link|improve this answer
feedback

Without jailbreaking the device, it is not possible to automatically start an app on start-up - except for Apps from Apple. I have no official reference for this, but just ask the mentioned person to demonstrate how to do this (he likely won't).

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.