你好,歡迎來到IOS教程網

 Ios教程網 >> IOS訊息 >> 關於IOS >> iOS調用系統發短信功能詳解

iOS調用系統發短信功能詳解

編輯:關於IOS

iOS調用系統的發短信功能可以分為兩種:1,程序外調用系統發短信。2,程序內調用系統發短信。第二種的好處是用戶發短信之後還可以回到app。這對app來說非常重要。

程序外調用系統發短信

這個方法其實很簡單,直接調用openURL即可:

  1. [[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"sms://13888888888"]];

 

程序內調用系統發短信

1)導入MessageUI.framework,並引入頭文件:
  1. #import <MessageUI/MessageUI.h>

 

2)實現代理方法MFMessageComposeViewControllerDelegate
  1.   -(void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result
  2. {
  3.     [self dismissViewControllerAnimated:YES completion:nil];
  4.     switch (result) {
  5.         case MessageComposeResultSent:
  6.             //信息傳送成功
  7.             break;
  8.         case MessageComposeResultFailed:
  9.             //信息傳送失敗
  10.             break;
  11.         case MessageComposeResultCancelled:
  12.             //信息被用戶取消傳送
  13.             break;
  14.         default:
  15.             break;
  16.     }
  17. }

 

3)發送短信
  1. -(void)showMessageView:(NSArray *)phones title:(NSString *)title body:(NSString *)body
  2.   if( [MFMessageComposeViewController canSendText] )
  3.   {
  4.       MFMessageComposeViewController * controller = [[MFMessageComposeViewController alloc] init];
  5.       controller.recipients = phones;
  6.       controller.navigationBar.tintColor = [UIColor redColor];
  7.       controller.body = body;
  8.       controller.messageComposeDelegate = self;
  9.       [self presentViewController:controller animated:YES completion:nil];
  10.       [[[[controller viewControllers] lastObject] navigationItem] setTitle:title];//修改短信界面標題
  11.   }
  12.   else
  13.   {
  14.       UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示信息"
  15.                                                       message:@"該設備不支持短信功能"
  16.                                                      delegate:nil
  17.                                             cancelButtonTitle:@"確定"
  18.                                             otherButtonTitles:nil, nil];
  19.       [alert show];
  20.   }

 

參數phones:發短信的手機號碼的數組,數組中是一個即單發,多個即群發。

4)調用發短信的方法
  1. [self showMessageView:[NSArray arrayWithObjects:@"13888888888",@"13999999999", nil] title:@"test" body:@"你是土豪麼,麼麼哒"];
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved