Super Art Studio

Recent site activity

中文首页‎ > ‎科技热点‎ > ‎iPhone‎ > ‎

iPhone的特殊URL

在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中的视频

Comments (1)

Leo - www.superarts.org - - Aug 13, 2008 10:21 PM

UIApp是toochain的用法,官方SDK可以这么用:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.google.com"]];