IOS中一些常用的小功能的实现

iOS中的很多小功能都是非常简单的,几行代码就搞定了,比如打电话、打开网址、发邮件、发短信等

打电话~方法1

  • 最简单最直接的方式:直接跳到拨号界面

     NSURL *url = [NSURL URLWithString:@"tel://10010"];
     [[UIApplication sharedApplication] openURL:url];
    
  • 缺点
    电话打完之后不会自动回到原应用,直接停留在通话记录界面

打电话~方法2

  • 拨打之前会弹框询问用户是否拨号,拨完后能自动回到原应用

     NSURL *url = [NSURL URLWithString:@"telprompt://10010"];
     [[UIApplication sharedApplication] openURL:url];
    
  • 缺点
    因为是私有API,所以可能不会被审核通过

打电话~方法3

创建一个UIWebView来加载URL,拨完后能自动回到原应用

if (_webView == nil) {
    _webView = [[UIWebView alloc] initWithFrame:CGRectZero];
}

[_webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"tel://10010"]]];

拨号之前会弹框询问用户是否拨号,拨完后能自动回到原程序
注意:这个webView千万不要设置尺寸,不然会挡住其他界面,他只是用来打电话,不需要显示


发短信~方法1

  • 直接跳到发短信界面,但是不能指定短信内容,而且不能回到原应用

     NSURL *url = [NSURL URLWithString:@"sms://10010"];
     [[UIApplication sharedApplication] openURL:url];
    

发短信~方法2

如果想指定短信内容,那就得使用MessageUI框架

包含主头文件
#import
//显示发短信的控制器
MFMessageComposeViewController *vc = [[MFMessageComposeViewController alloc] init];
//设置短信内容
vc.body = @"How are you?";
//设置收件人列表
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];
    if (result == MessageComposeResultCancelled) {
        NSLog(@"取消发送");
    } else if (result == MessageComposeResultSent) {
        NSLog(@"已经发出");
    } else {
        NSLog(@"发送失败");
    }
}

发邮件~方法1

  • 用自带的邮件客户端,发完邮件后不会自动回到原应用

     NSURL *url = [NSURL URLWithString:@"mailto://[email protected]"];
     [[UIApplication sharedApplication] openURL:url];
    
  • 参数实现

      //创建可变的地址字符串对象
      NSMutableString *mailUrl = [[NSMutableString alloc] init];
      //添加收件人,如有多个收件人,可以使用componentsJoinedByString方法连接,连接符为","
      NSString *recipients = @"[email protected]";
      [mailUrl appendFormat:@"mailto:%@?", recipients];
      //添加抄送人
      NSString *ccRecipients = @"[email protected]";
      [mailUrl appendFormat:@"&cc=%@", ccRecipients];
      //添加密送人
      NSString *bccRecipients = @"[email protected]";
      [mailUrl appendFormat:@"&bcc=%@", bccRecipients];
      //添加邮件主题
      [mailUrl appendFormat:@"&subject=%@",@"设置邮件主题"];
      //添加邮件内容
      [mailUrl appendString:@"&body=Hello World!"];
      //跳转到系统邮件App发送邮件
      NSString *emailPath = [mailUrl stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLFragmentAllowedCharacterSet]];
      [[UIApplication sharedApplication]openURL:[NSURL URLWithString:emailPath] options:@{} completionHandler:nil];
    

发邮件~方法2

  • 跟发短信的第二种方法差不多,只不过控制器名叫做MFMailComposeViewController——使用模态跳转出邮件发送界面。具体实现如下:
    1) 项目需要导入MessageUI.framework框架
    2) 在对应类里导入头文件:#import
    3) 对应的类遵从代理:MFMailComposeViewControllerDelegate

    //判断用户是否已设置邮件账户
    if ([MFMailComposeViewController canSendMail]) { 
       [self sendEmailAction]; // 调用发送邮件的代码
    }else{
       //给出提示,设备未开启邮件服务
    }
    
  • 实现

    -(void)sendEmailAction{
           // 创建邮件发送界面
          MFMailComposeViewController *mailCompose = [[MFMailComposeViewController alloc] init];
          // 设置邮件代理
          [mailCompose setMailComposeDelegate:self];
          // 设置收件人
          [mailCompose setToRecipients:@[@"[email protected]"]];
          // 设置抄送人
          [mailCompose setCcRecipients:@[@"[email protected]"]];
          // 设置密送人
          [mailCompose setBccRecipients:@[@"[email protected]"]];
          // 设置邮件主题
          [mailCompose setSubject:@"设置邮件主题"];
          //设置邮件的正文内容
          NSString *emailContent = @"我是邮件内容";
          // 是否为HTML格式
          [mailCompose setMessageBody:emailContent isHTML:NO];
          // 如使用HTML格式,则为以下代码
          // [mailCompose setMessageBody:@"

    Hello

    World!

    " isHTML:YES]; //添加附件 UIImage *image = [UIImage imageNamed:@"qq"]; NSData *imageData = UIImagePNGRepresentation(image); [mailCompose addAttachmentData:imageData mimeType:@"" fileName:@"qq.png"]; NSString *file = [[NSBundle mainBundle] pathForResource:@"EmptyPDF" ofType:@"pdf"]; NSData *pdf = [NSData dataWithContentsOfFile:file]; [mailCompose addAttachmentData:pdf mimeType:@"" fileName:@"EmptyPDF.pdf"]; // 弹出邮件发送视图 [_curVC presentViewController:mailCompose animated:YES completion:nil]; }
  • 代理方法

    #pragma mark - MFMailComposeViewControllerDelegate的代理方法:
    -(void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error{
      switch (result) {
      case MFMailComposeResultCancelled:
          NSLog(@"Mail send canceled: 用户取消编辑");
          break;
      case MFMailComposeResultSaved:
          NSLog(@"Mail saved: 用户保存邮件");
          break;
      case MFMailComposeResultSent:
          NSLog(@"Mail sent: 用户点击发送");
          break;
      case MFMailComposeResultFailed:
          NSLog(@"Mail send errored: %@ : 用户尝试保存或发送邮件失败", [error localizedDescription]);
          break;
      }
      // 关闭邮件发送视图
      [_curVC dismissViewControllerAnimated:YES completion:nil];
    }
    

发邮件~方法3

SKPSMTPMessage(第三方库)——可以在不告知用户的情况下进行邮件发送,但建议在发送之前告知用户,让用户决定是否发送。具体实现如下:
1)添加该第三方库
2)项目还需要导入CFNetwork.framework框架
3)在对应类中导入头文件:#import "SKPSMTPMessage.h",#import "NSData+Base64Additions.h"
4)对应的类遵从代理:SKPSMTPMessageDelegate
感兴趣的可以转至github上面查看一下具体的使用方法


打开其他常见文件

如果想打开一些常见文件,比如html、txt、PDF、PPT等,都可以使用UIWebView打开
只需要告诉UIWebView文件的URL即可
至于打开一个远程的共享资源,比如http协议的,也可以调用系统自带的Safari浏览器:

NSURL *url = [NSURL  URLWithString:@”http://www.baidu.com"];
[[UIApplication  sharedApplication]  openURL:url];

应用间的跳转

  • 有时候需要在本应用中打开其他应用,比如从A应用跳转到B应用

  • 首先B应用应该有自己的url地址(URL Schemes):如jimoo://ios.open

  • 接着在A应用中使用UIApplication完成跳转

     NSURL *url = [NSURL URLWithString:@"jimoo://ios.open"];
     [[UIApplication sharedApplication] openURL:url];
    

应用评分

为了提高应用的用户体验,经常需要邀请用户对应用进行评分,应用评分无非就是跳转到AppStore展示自己的应用,然后由用户自己撰写评论,如何跳转到AppStore,并且展示自己的应用。

方法:

NSString *appid = @"725296055”;
NSString *str = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/cn/app/id%@?mt=8", appid];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];

你可能感兴趣的:(IOS中一些常用的小功能的实现)