標籤:
- (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調用系統電話、瀏覽器、地圖、郵件等