iOS 调用短信、电话、邮件、浏览器等

1、调用 自带mail
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];

2、调用 电话phone

 

3、调用 SMS
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://800888"]];

4、调用自带 浏览器 safari
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.hzlzh.com"]];

调用phone可以传递号码,调用SMS 只能设定号码,不能初始化SMS内容。

若需要传递内容可以做如下操作:
加入:MessageUI.framework

#import <MessageUI/MFMessageComposeViewController.h>

实现代理:MFMessageComposeViewControllerDelegate

 

-(IBAction)dialClicked:(id)sender
{
    NSString *phoneNum = uil_phoneNumber.text;// 电话号码
    
    //第一种方法  直接拨打电话,不提示用户,但是通话结束后会返回系统自带的通讯录列表
    
    if (phoneNum != nil && ![phoneNum isEqualToString:@""]) {
        NSString *telUrl = [NSString stringWithFormat:@"tel://%@",phoneNum];
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:telUrl]];
    }
     
    
    // 第二种方法  在打电话前先提示用户,通话结束后反馈开发者的应用程序     不合法,可能无法通过苹果商店的审核。
    
  
     if (phoneNum != nil && ![phoneNum isEqualToString:@""]) {
     NSString *telUrl = [NSString stringWithFormat:@"telprompt:%@",phoneNum];
     [[UIApplication sharedApplication] openURL:[NSURL URLWithString:telUrl]];
    }
     
     
    // 第三种方法(效果和方法二一样) 打电话前提示用户,能返回开发者的应用程序
    
    NSURL *phoneURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",phoneNum]];      
    if ( !phoneCallWebView && ![phoneNum isEqualToString:@""]) {          
        phoneCallWebView = [[UIWebView alloc] initWithFrame:CGRectZero];// 这个webView只是一个后台的容易 不需要add到页面上来  效果跟方法二一样 但是这个方法是合法的
    } 
    [phoneCallWebView loadRequest:[NSURLRequest requestWithURL:phoneURL]];
    [self.view addSubview:phoneCallWebView];
     
}

 

调用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")
}

posted @ 2013-09-10 18:10  ygm900  阅读(5171)  评论(0编辑  收藏  举报