iOS开发中,调用打电话,发短信,打开网址等手机基础功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发中,调用打电话,发短信,打开网址等手机基础功能相关的知识,希望对你有一定的参考价值。
1、调用 ios系统自带mail
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://[email protected]"]];
2、调用 打电话phone
<1>一般在应用中拨打电话的方式是 iphone界面会停留在电话界面 :
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://159*****334"]];
<2>用如下方式,可以使得用户结束通话后自动返回到应用:
UIWebView*callWebview =[[UIWebView alloc] init]; NSURL *telURL =[NSURL URLWithString:@"tel://159*****334"];// 貌似tel:// 或者 tel: 都行 [callWebview loadRequest:[NSURLRequest requestWithURL:telURL]]; [self.view addSubview:callWebview];
<3>还有一种私有方法:(可能不能通过审核)
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://10086"]];
3、调用SMS
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://800888"]];
PS:
调用phone可以传递号码,调用SMS 只能设定号码,不能初始化SMS内容。
若需要传递内容可以做如下操作:
加入:MessageUI.framework
#import <MessageUI/MFMessageComposeViewController.h>
实现代理:MFMessageComposeViewControllerDelegate
调用sendSMS函数
//内容,收件人列表
- (void)sendSMS:(NSString *)bodyOfMessage recipientList:(NSArray *)recipients { MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init] autorelease]; if([MFMessageComposeViewController canSendText]) { controller.body = bodyOfMessage; controller.recipients = recipients; controller.messageComposeDelegate = self; [self presentModalViewController:controller animated:YES]; } }
// 处理发送完的响应结果 - (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result { [self dismissModalViewControllerAnimated:YES]; if (result == MessageComposeResultCancelled) NSLog(@"Message cancelled") else if (result == MessageComposeResultSent) NSLog(@"Message sent") else NSLog(@"Message failed") }
默认发送短信的界面为英文的,解决办法为:
在.xib 中的Localization添加一組Chinese就ok了
4、4、调用 iOS系统自带浏览器safari
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.baidu.com"]];
以上是关于iOS开发中,调用打电话,发短信,打开网址等手机基础功能的主要内容,如果未能解决你的问题,请参考以下文章
delphi xe5 android 开发实现手机打电话和发短信