iOS调用系统电话浏览器地图邮件等

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS调用系统电话浏览器地图邮件等相关的知识,希望对你有一定的参考价值。

- (IBAction)openMaps {
//打开地图 
NSString*addressText = @"beijing";
//@"1Infinite Loop, Cupertino, CA 95014"; 
addressText =[addressText stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]; 

NSString  *urlText = [NSString stringWithFormat:@"http://maps.google.com/maps?q=%@",addressText]; 
NSLog(@"urlText=============== %@", urlText);
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlText]];
}

- (IBAction)openEmail {
//打开mail // Fire off an email to apple support
[[UIApplication sharedApplication]openURL:[NSURL   URLWithString:@"mailto://[email protected]"]];
} 

- (IBAction)openPhone {

//拨打电话
// Call Google 411
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://10086"]];
} 

- (IBAction)openSms {
//打开短信
// Text toGoogle SMS
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://10086"]];
}

-(IBAction)openBrowser {
//打开浏览器
// Lanuch any iPhone developers fav site
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://blog.csdn.net/duxinfeng2010"]];
}

 

以上是关于iOS调用系统电话浏览器地图邮件等的主要内容,如果未能解决你的问题,请参考以下文章

iOS学习笔记28-系统服务短信和邮件

iOS应用间通信:URL Schemes

如何通过编程拨打电话

iOS开发系列--通讯录蓝牙内购GameCenteriCloudPassbook系统服务开发汇总

iOS开发系列--通讯录蓝牙内购GameCenteriCloudPassbook系统服务开发汇总

iOS通过openURL打开原生应用与页面(包括电话,短信,safari等)