openURL:方法 (打电话 , 发短信)

openURL:方法

UIApplication有个功能十分强大的openURL:方法

- (BOOL)openURL:(NSURL*)url;

openURL:方法的部分功能有

打电话  UIApplication *app = [UIApplicationsharedApplication]; [app openURL:[NSURLURLWithString:@"tel://10086"]];

发短信  [app openURL:[NSURLURLWithString:@"sms://10086"]];

发邮件  [app openURL:[NSURLURLWithString:@"mailto://[email protected]"]];

打开一个网页资源 [app openURL:[NSURLURLWithString:@"http://ios.itcast.cn"]];

打开其他app程序  openURL方法,可以打开其他APP。

URL补充:

URL:统一资源定位符,用来唯一的表示一个资源。

URL格式:协议头://主机地址/资源路径

网络资源:http/ ftp等  表示百度上一张图片的地址  http://www.baidu.com/images/20140603/abc.png

本地资源:file:///users/apple/desktop/abc.png(主机地址省略)

你可能感兴趣的:(openURL:方法 (打电话 , 发短信))