iPhone开发中使用的特殊URL
by Elton on 十.24, 2009, under iPhone
在iPhone中,可以直接用UIApp打开URL地址。如下所示:
1 | [ UIApp openURL: [ NSURL URLWithString:@"http://www.apple.com" ] ]; |
或者:
1 | [ UIApp openURL: [ NSURL URLWithString:@"mailto:apple@mac.com?Subject=hello" ] ]; |
与此同时,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中的视频


