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

While working on iphone security architecture, i came to know that i can run applications from other applications in iphone. referring to the following url http://iphonedevelopertips.com/cocoa/launching-other-apps-within-an-iphone-application.html

for example, i can put a link in a website with following hyperlink skype:// will result skype to run and call at particular number. Now i have few concerns here.

  • is there a shell running in background in iphone, so that it allows other application to run basic app commands.
  • if the above statement is true then how can i enable or run commands directly into iphone shell?
  • if above statements are false, then could you please explain how these commands are being executed?
  • is this part of iPhone SDK? or this funcationality is iPhone OS
link|improve this question

66% accept rate
2  
It is part of the SDK. You can ask your application to process a URL. When it does this, it checks the scheme of the URL and does something. If the scheme, for instance, is sms:// it will open the Message application. You application can have a scheme and URL as well, in which case it will open that application. It does not execute commands through a shell, and there is no shell unless you do jailbreak your phone an install one. – Jason Coco Mar 12 '10 at 4:28
1  
It's definitely a programming question in my opinion. You could probably phrase it more like one to avoid anymore close votes. (I'll vote to reopen if it does get closed.) – Spencer Ruport Mar 12 '10 at 4:39
1  
It is processed by the springboard, which is the application that is basically the desktop on the iPhone. It is not processed by safari. When you message the UIApplication object to open a URL, the framework forwards that request to the springboard, and it processes the URL. Again, based on the scheme (the part before :// in the URL), it will open some specific application, like Skype. If you do this, however, the springboard will terminate your application before it opens that application. – Jason Coco Mar 12 '10 at 4:40
1  
@Jason - True but I think he's asking a question that could require a deeper understanding of the OS that only a developer would be aware of. – Spencer Ruport Mar 12 '10 at 5:45
1  
Regarding iPhone shell, see also these questions: superuser.com/questions/20071/… and superuser.com/questions/47295/… – Jonik Mar 12 '10 at 10:35
show 4 more comments
feedback

migrated from superuser.com Mar 12 '10 at 14:28

This question came from our site for computer enthusiasts and power users.

3 Answers

This is functionality of the iPhone OS. Applications register themselves as URL Handlers for particular protocols. In this case the Skype app is registered to handle skype:// URL protocols.

  • An Application registers itself as a protocol handler via the CFBundleURLTypes key in it's Info.plist. See here.
  • The OS reads this key when your application is installed.
  • Whenever a URL for that protocol is encountered and tapped on, the OS will launch your App and your Application Delegate will be sent the application:handleOpenURL: message.
  • It is then up to your Application to correctly decode the URL and perform the correct action.

PS. There is virtually identical functionality available in Mac OS X, with the additional possiblity for URLs to be sent to already running applications.

link|improve this answer
that makes sense. One last question to. if i put the command skype:// in browser address bar then it does not work (i.e does not open skype) but if i make it a link in website then it works fine. Can someone explain it? – alee Mar 12 '10 at 5:57
That should work, and it works for me. What OS version are you on? – Alan Rogers Mar 12 '10 at 6:07
feedback

A shell can be spawned with system or popen etc. Of course, because the apps are sandboxed, fork() is denied so the shell won't be accessible from any AppStore apps.

However, there are lots of stuff running in background on the iPhoneOS. One of them is SpringBoard.app, which is the "home screen" you see on start up. Actually SpringBoard.app is responsible for much more stuff than just displaying the home screen, one of them is to receive and deliver URL requests.

The registration process has been described by @Alan. But under hood, when a URL request is issued by an app, the following will happen:

  1. The app, knowing itself cannot handle a particular URL, calls -[UIKit openURL:] to delegate the open request to others.
  2. UIKit will package the URL request into a GSEvent (an IPC mechanism), and then dispatch it to SpringBoard.
  3. SpringBoard, receiving this GSEvent, calls -[SpringBoard applicationOpenURL:].
  4. This method will check if the URL is well-form and safe (stuff like tel://*5005*78283# will be rejected, for example). If it is valid, the action will be performed (dial a number, subscribe to a calendar, open an app, etc.)
link|improve this answer
feedback

what alee is asking about, I guess, is the "mailto://". when you put this in the browser address bar it does not do anything, but if you put it as a link and click on it, it lunches the mail app. why does the mail app have this behavior?

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.