iOS peak two apps call each other and carry parameter values

Source: Internet
Author: User
Tags list of attributes

1, new two projects: Appone,apptwo;

2, respectively in their list of attributes are added as follows:

Appone:



Apptwo:



Add code to the Appone viewcontroller.m:

-(void) Touchesbegan: (Nsset *) touches withevent: (Uievent *) event

{



Nsurl *url = [nsurlurlwithstring:@ "Apptwo:"];

if ([[[Uiapplicationsharedapplication] canopenurl:url])//Determine if the device is installed Apptwo

{

NSLog (@ "Canopenurl");

[[UIApplication sharedapplication] openurl:url]; Open the Apptwo application if you want to carry the parameters: nsurl *url = [nsurlurlwithstring:@ "apptwo://you want to carry algebra"];

} else

{

NSLog (@ "Can not OpenURL");

}

}

Add code to the Apptwo viewcontroller.m:



Appdelegate inside Receive URL

-(BOOL) Application: (UIApplication *) app OpenURL: (nsurl *) URL options: (nsdictionary< Uiapplicationopenurloptionskey, id> *) options

{

NSLog (@ "--%@", url);

return YES;

}




-(void) Touchesbegan: (Nsset *) touches withevent: (Uievent *) event

{

NSLog (@ "Touchesbegan");

Nsurl *url = [nsurlurlwithstring:@ "Appone:"];

if ([[Uiapplicationsharedapplication] canopenurl:url])

{

NSLog (@ "Canopenurl");

[[UIApplication sharedapplication] openurl:url];

} else

{

NSLog (@ "Can not OpenURL");

}

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.