手机
当前位置:查字典教程网 >编程开发 >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 App中调用相册中图片及获取最近的一张图片的方法

iOS App中调用iPhone各种感应器的方法总结

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

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

举例讲解iOS应用开发中hitTest触摸事件的编写方法

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

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

iOS图片模糊效果的实现方法

Xcode 8打印log日志的问题小结及解决方法

iPhone拍照/摄像软件开发实例

精品推荐
分类导航