ios——在iPhone程式中開啟其它程式

來源:互聯網
上載者:User

你可以使用openUrl開啟一些程式,不只是瀏覽器,我們將在下面的例子中示範這些這些應用:
開啟瀏覽器
開啟google map
開啟email
撥號程式
發簡訊程式
開啟appstore
Launch Google Maps
到googlemap的URL格式是:
http://maps.google.com/maps?q=${QUERY_STRING}
你可以更改QUERY_STRING改變位置資訊:

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]];
開啟Apple Mail
格式:
mailto://${EMAIL_ADDRESS}
[[UIApplication
sharedApplication]
openURL:[NSURL
URLWithString:@"mailto://info@iphonedevelopertips.com"]];
撥打到電話(iPhone Only)
格式:
tel://${PHONE_NUMBER}
1
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8004664411"]];
發簡訊
格式
sms:${PHONENUMBER_OR_SHORTCODE}
1
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms:55555"]];
開啟app store
開啟appstore的程式位置,右鍵點擊程式表徵圖擷取url
格式如下:
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&mt=8"]; [[UIApplication sharedApplication] openURL:appStoreUrl];

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.