iOS调起拨打电话发短信发邮件
2016-07-05 本文已影响1032人
smile丽语
在APP开发中,可能会涉及到打电话、发短信、发邮件等功能。
1.拨打电话有三种方式:
第一种1.1: 直接拨打,跳转到拨号界面
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", @“你所需要拨打的电话号码”]]];
第二种1.2: 提示拨打(苹果原生自带)
拨号之前会弹框询问,打完电话后能自动回到原应用。
1.2.1、 创建一个UIWebView来加载URL,拨完后能自动回到原应用。建议使用这种方案!
// 提示拨打方法1:
NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@", @"你所需要拨打的电话号码"];
UIWebView * callWebview = [[UIWebView alloc] init];
[callWebview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:str]]];
[self.view addSubview:callWebview];
1.2.2、 缺点:私有API,因此可能通不过苹果官方审核。如果是企业级应用(不需要上线appStore),可以使用这个方法。
// 提示拨打方法2:
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"telprompt:%@", @"你所需要拨打的电话号码"]];
// 调用openURL:
if ([[UIApplication sharedApplication] canOpenURL:url]) {
[[UIApplication sharedApplication] openURL:url];
}
第三种1.3: 弹框提示拨打(根据UI设计界面修改)
需要封装自定义弹框文件: QTXAlterView
@property (nonatomic, strong) QTXAlterView *telAlterView; // 拨打电话的弹框
QTXAlterView *alter = [[QTXAlterView alloc] initWithMessage:[NSString stringWithFormat:@"你所需要拨打的电话号码"] delegate:self rightButtonTitle:@"确定" otherButtonTitles:@"取消"];
[alter show];
self.telAlterView = alter;
#pragma mark - QTXAlterViewDelegate
- (void)alertView:(QTXAlterView *)alertView clickedAtIndex:(NSInteger)buttonIndex {
if (alertView == self.telAlterView) { // 拨打电话
if (buttonIndex == 1) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@", @“你所需要拨打的电话号码”]]];
}
}
}
2.发短信的方式有两种:
(1)直接跳转到发短信界面。
缺点:不能定义发送短信的内容,且发完短信后不能自动回到原应用。
NSURL *url = [NSURL URLWithString:@"sms://10010"];[[UIApplication sharedApplication] openURL:url];
(2)使用MessageUI 框架发送短信, 建议使用第二种方法。
需要包含头文件 #import <MessageUI/MessageUI.h>
MFMessageComposeViewController *vc = [[MFMessageComposeViewController alloc]init];
//设置短信内容
vc.body = @"吃饭了没";
//设置收件人列表
vc.recipients = @[@"10010",@"10086"];
//设置代理
vc.messageComposeDelegate = self;
//显示控制器
[self presentViewController:vc animated:YES completion:nil];
// 实现代理函数: 点击取消按钮会自动调用
- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result {
[controller dismissViewControllerAnimated:YES completion:nil];
}
3.发邮件的方式有两种:
(1)用自带的邮件客户端.
缺点:发完邮件后不会自动回到原应用
NSURL *url = [NSURL URLWithString:@"mailto://test@qq.com"];[[UIApplication sharedApplication] openURL:url];
(2)类似于发短信的第二种方法,使用MessageUI,
if(![MFMailComposeViewController canSendMail]) return;
MFMailComposeViewController *vc = [[MFMailComposeViewController alloc] init];
//设置邮件主题
[vc setSubject:@"测试邮件"];
//设置邮件内容
[vc setMessageBody:@"测试内容" isHTML:NO];
//设置收件人列表
[vc setToRecipients:@[@"test@qq.com"]];
//设置抄送人列表
[vc setCcRecipients:@[@"test1@qq.com"]];
//设置代理
vc.mailComposeDelegate = self;
//显示控制器
[self presentViewController:vc animated:YES completion:nil];
// 实现代理方法:
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error {
[controller dismissViewControllerAnimated:YES completion:nil];
}