zoukankan      html  css  js  c++  java
  • IOS 开发,调用打电话,发短信,打开网址

    IOS 开发,调用打电话,发短信,打开网址

     

    1、调用 自带mail

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];

    2、调用 电话phone

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8008808888"]];

    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

     

     

     

    调用sendSMS函数

    //内容,收件人列表

    - (void)sendSMS:(NSString *)bodyOfMessage recipientList:(NSArray *)recipients

    {

     

        MFMessageComposeViewController *controller = [[[MFMessageComposeViewController allocinitautorelease];

     

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

     

     

    发送邮件的为:

    导入#import <MessageUI/MFMailComposeViewController.h>

    实现代理:MFMailComposeViewControllerDelegate

     

    //发送邮件

    -(void)sendMail:(NSString *)subject content:(NSString *)content{

     

        MFMailComposeViewController *controller = [[[MFMailComposeViewController allocinitautorelease];

     

        if([MFMailComposeViewController canSendMail])

     

        {

     

            [controller setSubject:subject];

     

            [controller setMessageBody:content isHTML:NO];

     

            controller.mailComposeDelegate = self;

     

            [self presentModalViewController:controller animated:YES];

     

        }    

    }

     

    //邮件完成处理

    -(void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error{

     

        [self dismissModalViewControllerAnimated:YES];

     

        if (result == MessageComposeResultCancelled)

            NSLog(@"Message cancelled");

        else if (result == MessageComposeResultSent)

            NSLog(@"Message sent"); 

        else 

            NSLog(@"Message failed");  

     

    }

  • 相关阅读:
    黄聪:基于jQuery+JSON的省市区三级地区联动
    黄聪:jquery 校验中国身份证号码
    黄聪: Bootstrap之Form表单验证神器: BootstrapValidator(转)
    黄聪:MySQL 按指定字段自定义列表排序
    黄聪:MYSQL使服务器内存CPU占用过高问题的分析及解决方法
    黄聪:PHP 防护XSS,SQL,代码执行,文件包含等多种高危漏洞
    黄聪:解决丢失api-ms-win-crt-runtime-|1-1-0.dll的问题:vc_redist.x64
    黄聪:如何开启IIS7以上的“IIS6管理兼容性”
    黄聪:怎么清理win7、win8更新垃圾(winsxs目录清理)
    黄聪:Mysql5.6缓存命中率
  • 原文地址:https://www.cnblogs.com/shifu/p/5502522.html
Copyright © 2011-2022 走看看