iPhone开发中使用的特殊URL

在iPhone中,可以直接用UIApp打开URL地址。如下所示:

  1.  
  2. [ UIApp openURL: [ NSURL URLWithString:@ "http://www.apple.com" ] ];
  3.  

或者:

  1.  
  2. [ UIApp openURL: [ NSURL URLWithString:@ "mailto:[email protected]?Subject=hello" ] ];
  3.  

与此同时,iPhone还包含一些其他除了http://或者mailto:之外的URL:
sms:// 可以调用短信程序
tel:// 可以拨打电话
itms:// 可以打开MobileStore.app
audio-player-event:// 可以打开iPod
audio-player-event://?uicmd=show-purchased-playlist 可以打开iPod播放列表
video-player-event:// 可以打开iPod中的视频

http://blog.prosight.me/index.php/2009/10/420

你可能感兴趣的:(iPhone开发)