本文主要是介绍iOS 内置URL schemes简介(2),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
(3)Text links(文本链接)
使用sms协议来加载Messages应用。该URL的正式格式为"sms:<phone>",其中<phone>是可选的,用来指定sms消息接收者的号码。参数值包含了数字,"+" , "-" , "." 。
HTML页面中
- <a href="sms:">Launch Messages App</a>
- <a href="sms:1-408-555-1212">New SMS Message</a>
本地应用中
- if(![[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"sms:1-408-555-1212"]] ){
- UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"" message:@"无法打开程序" delegate:nil cancelButtonTitle:@"确认" otherButtonTitles: nil] ;
- [alert show] ;
- }
(4)iTunes links(iTunes链接)
iTunes链接用来链接到iTunes Store中的内容。通过Apple的 iTunes Link Maker我们可以方便的查询并获取应用程序的链接地址。
HTML页面中
- <a href="https://itunes.apple.com/cn/app/numbers/id361304891?mt=8">Numbers</a>
本地应用中
- [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"http://maps.apple.com/?q=cupertino"]] ;
正确的地图链接格式规则如下
域名必须为maps.apple.com
路径不能为/maps/*
参数不能为q=*
参数不能包含view=text或dirflag=r
(5)Youtube links(Youtube链接)
Youtube链接用来加载YouTube应用程序或者链接值YouTube的web站点来播放指定的视频。链接到Youtube的应用可以播放其视频。链接是以http为开头的,而非youtube。
HTML页面中
- <a href="http://www.youtube.com/watch?v=xNsGNlDb6xY">iPhone5</a>
- <a href="http://www.youtube.com/v/xNsGNlDb6xY">iPhone5</a>
本地应用程序中
- //或 http://www.youtube.com/v/xNsGNlDb6xY
- if(![[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=xNsGNlDb6xY"]] ){
- UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"" message:@"无法打开程序" delegate:nil cancelButtonTitle:@"确认" otherButtonTitles: nil] ;
- [alert show] ;
- }
这篇关于iOS 内置URL schemes简介(2)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!