IOS-open other programs in the iPhone Program

Source: Internet
Author: User

You can use Openurl to open some programs, not just browsers. We will demonstrate these applications in the following example:
Open a browser
Open Google Map
Open email
Dialer
Text messaging program
Open appstore
Launch Google Maps
The URL format to GoogleMap is:
Http://maps.google.com/maps? Q =$ {QUERY_STRING}
You can change QUERY_STRING to change the location information:

Nsstring * searchquery = @ "The Postion I want to know ";
Searchquery = [searchquery stringbyaddingpercentescapesusingencoding: nsutf8stringencoding];
Nsstring * urlstring = [nsstring stringwithformat: @ "http://maps.google.com/maps? Q = % @ ", searchquery]; [[uiapplication sharedapplication] Openurl: [nsurl urlwithstring: urlstring];
Open Apple Mail
Format:
Mailto: // $ {email_address}
[[Uiapplication
Sharedapplication]
Openurl: [nsurl
Urlwithstring: @ "mailto: // info@iphonedevelopertips.com"];
Call (iPhone only)
Format:
Tel: // $ {phone_number}
1
[[Uiapplication sharedapplication] Openurl: [nsurl urlwithstring: @ "Tel: // 8004664411"];
Text message
Format
SMS :$ {phonenumber_or_shortcode}
1
[[Uiapplication sharedapplication] Openurl: [nsurl urlwithstring: @ "SMS: 55555"];
Open App Store
Open the appstore program location, right-click the program icon to get the URL
The format is as follows:
Http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware? Id = 291586600 & mt = 8
1 2
Nsurl * appstoreurl = [nsurl urlwithstring: @ "http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware? Id = 291586600 & amp; MT = 8 "]; [[uiapplication sharedapplication] Openurl: appstoreurl];

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.