年年有"余"

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2229|回复: 0

,如何代码实现跳转safari,phone或message?

[复制链接]
  • TA的每日心情
    奋斗
    2022-12-13 21:26
  • 签到天数: 371 天

    [LV.9]以坛为家II

    发表于 2015-1-6 11:46:39 | 显示全部楼层 |阅读模式
    在相应的代码中写入:
    1、调用 电话phone
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://4008008288"]];
    2、调用自带 浏览器 safari
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.abt.com"]];
    3、调用 自带mail
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://[email protected]"]];
    4、调用 SMS
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://800888"]];
    5,跳转到系统设置相关界面
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];

    其中,发短信,发Email的功能只能填写要发送的地址或号码,无法初始化发送内容,如果想实现内容的话,还需要更复杂一些,实现其各自的委托方法。
    若需要传递内容可以做如下操作:
    加入:MessageUI.framework

    #import <MessageUI/MFMessageComposeViewController.h>

    实现代理:MFMessageComposeViewControllerDelegate
    [Objective-C] 纯文本查看 复制代码
    调用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")  
    }
     
     
    发送邮件的为:
    导入#import <MessageUI/MFMailComposeViewController.h>
    实现代理:MFMailComposeViewControllerDelegate
     
    //发送邮件
    -(void)sendMail:(NSString *)subject content:(NSString *)content{
     
        MFMailComposeViewController *controller = [[[MFMailComposeViewController alloc] init] autorelease];
     
        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");  
     
    }
     
    默认发送短信的界面为英文的,解决办法为:在.xib 中的Localization添加一組chinese
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    手机版|小黑屋|Archiver|iOS开发笔记 ( 湘ICP备14010846号 )

    GMT+8, 2024-4-27 22:24 , Processed in 0.051572 second(s), 22 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2021, Tencent Cloud.

    快速回复 返回顶部 返回列表