手机
当前位置:查字典教程网 >编程开发 >IOS开发 >调用iphone地图、电话、邮件、短信及内容方法
调用iphone地图、电话、邮件、短信及内容方法
摘要:代码如下-(IBAction)openMaps{//WhereisAppleonthemapanyway?NSString*addressT...

代码如下

-(IBAction)openMaps {

// Where is Apple on the map anyway?

NSString* addressText = @"1 Infinite Loop, Cupertino, CA 95014";

// URL encode the spaces

addressText = [addressText stringByAddingPercentEscapesUsingEncoding: NSASCIIStringEncoding];

NSString* urlText = [NSString stringWithFormat:@"/maps?q=%@", addressText];

// lets throw this text on the log so we can view the url in the event we have an issue

NSLog(urlText);

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlText]];

}

-(IBAction)openEmail {

// Fire off an email to apple support

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://devprograms@"]];

}

-(IBAction)openPhone {

// Call Google 411

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8004664411"]];

}

-(IBAction)openSms {

// Text to Google SMS

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://466453"]];

}

-(IBAction)openBrowser {

// Lanuch any iPhone developers fav site

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@""]];

}

//自动填写短信内容

代码如下

MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init];

picker.messageComposeDelegate = self;

picker.recipients = [NSArray arrayWithObject:@"48151623"];

picker.body = @"Body text.";

[self presentModalViewController:picker animated:YES];

[picker release];

【调用iphone地图、电话、邮件、短信及内容方法】相关文章:

iOS中的导航栏UINavigationBar与工具栏UIToolBar要点解析

IOS检测指定路径的文件是否存在

ios8 beta4微信闪退bug解决方法

两种iOS调用系统发短信的方法

IOS中使用UIWebView 加载网页、文件、 html的方法

理解iOS多线程应用的开发以及线程的创建方法

iOS应用开发中UIView添加边框颜色及设置圆角边框的方法

一个方法搞定iOS下拉放大及上推缩小

IOS开发代码分享之设置UISearchBar的背景颜色

iOS应用中发送HTTP的get请求以及HTTP异步请求的方法

精品推荐
分类导航