IOS apps call each other

Source: Internet
Author: User

IOS apps call each other

Caller:

You only need to execute the following call method, with ": //" as the separator, the left side is the address of the APP to be called, and the right side is the parameter you want to pass to the APP.

 

    NSURL *url = [NSURL URLWithString:@"Ceshi001://aaaaaaa"];    [[UIApplication sharedApplication] openURL:url];

 

 

Called:

Add the URL types attribute to the info. plist file, as shown in:

 

And implement the following delegate Method

 

- (BOOL)application:(UIApplication *)application            openURL:(NSURL *)url  sourceApplication:(NSString *)sourceApplication         annotation:(id)annotation{    NSString*text=[[url host]stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];    NSLog(@"%@",text);    NSLog(@"%@",url.description);    NSLog(@"%@",sourceApplication);        return YES;}

 

 

The printed information is as follows:

 

015-05-26 15:26:00. 821 HAppTest [5365: 1695127] aaaaaaa

15:26:00. 822 HAppTest [5365: 1695127] Ceshi001: // aaaaaaa

15:26:00. 822 HAppTest [5365: 1695127] com. huaxun. AppTest



 

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.