Jump and transmit values between iOS apps

Source: Internet
Author: User

Info.plist settings in the first application

URL Identifier: The string is the name of your custom URL scheme

Note: URL schemes is an array that allows the app to define multiple URL schemes.

Supplement: View key

Effect:

Call string (): iosapp://(your app's URL scheme name +://) can be called directly in the browser

code calls;

NSString *customurl =@"iosapp://";

if([[UIApplication sharedapplication]
Canopenurl:[nsurl Urlwithstring:customurl]])
{
[[UIApplication sharedapplication] Openurl:[nsurl Urlwithstring:customurl]];
}

Transfer of parameters during program switching (first application appdelegate)

-(BOOL) Application: (UIApplication *) application OpenURL: (nsurl *) URL
Sourceapplication: (NSString *) sourceapplication annotation: (ID) annotation

-(BOOL) Application: (UIApplication *) application OpenURL: (nsurl *) URL
Sourceapplication: (NSString *) sourceapplication annotation: (ID) annotation
{
NSLog (@"calling Application Bundle ID:%@", sourceapplication);
NSLog (@"URL scheme:%@", [URL scheme]);
NSLog (@"URL query:%@", [url query]);

returnYES;
}

In the second application:iosapp:// with a string on the line.

NSString *customurl =@"iosapp://?token=123abct&registered=1";

Note "Calling Application Bundle ID", which you can use to ensure that only the apps you define can interact directly with your app.

Jump and transmit values between iOS apps

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.