Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Yes Communication can be made between two applications in iPhone but limited to a handful of scenarios.</p> <ol> <li><p>There might be apps which need to be sending to background according to some event like phonecall,etc.In Such cases you will have to configure your audio-session object (a Voip based app) and send notification accordingly.</p></li> <li><p>The previous example is just interacting between apps with extremely less flexibility(sending app to background on some important built in event).The other way to do this is through URL Schemes , apple has some built in functionality and support for certain applications such as mail.tel , etc.But one of the application will come to foreground.</p></li> </ol> <p>Like you can call a phone number , which is built in application using :-</p> <pre><code>NSString *phURL= [NSString stringWithFormat:@"tel:%@", [NSString StringWithString:@"1-800-555-1212"]]; NSURL *phoneURL = [NSURL URLWithString:phURL]; [[UIApplication sharedApplication] openURL:phoneURL]]; </code></pre> <p>By the way it's along story if You need to implement a <a href="https://developer.apple.com/library/IOs/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedAppTricks/AdvancedAppTricks.html#//apple_ref/doc/uid/TP40007072-CH7-SW18" rel="nofollow noreferrer">Custom URL Schemes</a>..have fun with it.</p> <ol start="3"> <li>The other way is through <a href="https://www.google.co.in/webhp?hl=en&amp;tab=ww#hl=en&amp;safe=off&amp;sclient=psy-ab&amp;q=UIDocumentInteractionController+&amp;oq=UIDocumentInteractionController+&amp;aq=f&amp;aqi=g4&amp;aql=&amp;gs_l=hp.3..0l4.617438.617438.0.621292.1.1.0.0.0.0.577.577.5-1.1.0...0.0.BV22RO4g1IY&amp;pbx=1&amp;bav=on.2,or.r_gc.r_pw.r_cp.r_qf.,cf.osb&amp;fp=357008c06016d30d&amp;biw=1280&amp;bih=696" rel="nofollow noreferrer">UIDocumentInteractionController</a> which provides in-app support to have interaction between certain files.(Sandbox environment inhibits a complete access or even accesses that can modify data of other application).Like it can be used to preview files in mail app or download attachments.But you cannot modify them for other application , of course you can copy it and modify it for your application.</li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload