1、打电话(推荐以下这种方式)
NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"telprompt://%@",电话号码];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
2、发短信
导入 #import
#pragma MARK--实现代理方法MFMessageComposeViewControllerDelegate
-(void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
{
[self dismissViewControllerAnimated:YES completion:nil];
switch (result) {
case MessageComposeResultSent:
//信息传送成功
break;
case MessageComposeResultFailed:
//信息传送失败
break;
case MessageComposeResultCancelled:
//信息被用户取消传送
break;
default:
break;
}
}
#pragma MARK---发送短信
-(void)showMessageView:(NSArray *)phones title:(NSString *)title body:(NSString *)body
{
if( [MFMessageComposeViewController canSendText] )
{
MFMessageComposeViewController * controller = [[MFMessageComposeViewController alloc] init];
controller.recipients = phones;
controller.navigationBar.tintColor = [UIColor whiteColor];
controller.body = body;
controller.messageComposeDelegate = self;
[self presentViewController:controller animated:YES completion:nil];
[[[[controller viewControllers] lastObject] navigationItem] setTitle:title];//修改短信界面标题
}
else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示信息"
message:@"该设备不支持短信功能"
delegate:nil
cancelButtonTitle:@"确定"
otherButtonTitles:nil, nil];
[alert show];
}
}
最后是调用
[self showMessageView:[NSArray arrayWithObjects:self.telePString, nil] title:@"" body:@""];
3、发邮件
NSString *str = [NSString stringWithFormat:@"mailto://%@",self.emailPString];
NSURL *url = [NSURL URLWithString:str];
[[UIApplication sharedApplication] openURL:url];