`
lizhuang
  • 浏览: 902737 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

iOS发送短信息代码实例

 
阅读更多
#import <MessageUI/MessageUI.h>


#import <MFMessageComposeViewControllerDelegate,MFMailComposeViewControllerDelegate>



    -(void)send_SMS{

      Class messageClass = (NSClassFromString(@"MFMessageComposeViewController"));

            if (messageClass != nil) {
                // Check whether the current device is configured for sending SMS messages
                if ([messageClass canSendText]) {
                    [self displaySMSComposerSheet];
                }
                else {
                  //  feedbackMsg.hidden = NO;
                  //  feedbackMsg.text = @"Device not configured to send SMS.";
                    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Device not configured to send SMS." delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Call",nil];
                    //[alert setTag:5];
                    [alert show];
                }
            }
            else {
               // feedbackMsg.hidden = NO;
               // feedbackMsg.text = @"Device not configured to send SMS.";
                UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Device not configured to send SMS." delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Call",nil];
                //[alert setTag:5];
                [alert show];

            }


    }




// Displays an SMS composition interface inside the application.
-(void)displaySMSComposerSheet
{
    MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init];
    picker.messageComposeDelegate = self;
    picker.body=@"Testing";
    picker.recipients = [NSArray arrayWithObject:@"12345678"];
    [self presentModalViewController:picker animated:YES];
    }



// Dismisses the message composition interface when users tap Cancel or Send. Proceeds to update the
// feedback message field with the result of the operation.
- (void)messageComposeViewController:(MFMessageComposeViewController *)controller
                 didFinishWithResult:(MessageComposeResult)result {

    feedbackMsg.hidden = NO;
    // Notifies users about errors associated with the interface
    switch (result)
    {
        case MessageComposeResultCancelled:{
            //feedbackMsg.text = @"Result: SMS sending canceled";
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"SMS sending canceled" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
            [alert show];
        }
            break;
        case MessageComposeResultSent:{
            //feedbackMsg.text = @"Result: SMS sent";
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"SMS sent" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
            [alert show];
        }
            break;
        case MessageComposeResultFailed:{
            //feedbackMsg.text = @"Result: SMS sending failed";
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"SMS sending failed" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
            [alert show];
        }
            break;
        default:
        {
            //feedbackMsg.text = @"Result: SMS not sent";
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"SMS not sent" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
            [alert show];
        }
            break;
    }
    [self dismissModalViewControllerAnimated:YES];
}
分享到:
评论

相关推荐

    iOS发送短信代码,测试可用

    如果设备支持发送短信,我们可以创建一个`MFMessageComposeViewController`实例,并设置收件人、短信正文等信息: ```swift func sendSMS(to recipients: [String], messageBody: String) { if canSendSMS() { ...

    iOS程序内部发送短信

    在iOS平台上,应用程序通常不能直接实现内部发送短信功能,因为苹果的安全策略限制了第三方应用对系统功能的直接访问,特别是涉及到用户隐私的部分,如短信、电话等。然而,可以通过使用`...

    ios 发短信功能

    总的来说,实现iOS平台上的短信发送功能涉及导入MessageUI框架、获取权限、创建并配置MFMessageComposeViewController实例,以及处理发送状态的回调。通过这些步骤,开发者可以为用户提供便捷的短信发送功能。

    不调用ios自带发送短信通讯录

    标题提到的“不调用iOS自带发送短信通讯录”实际上是指如何在App内部实现发送短信的功能,而不依赖于系统默认的短信应用,并且可能涉及到获取和选择联系人(即通讯录)的方式。在iOS中,这种自定义行为需要遵循Apple...

    ios发送短信

    在iOS平台上,发送短信功能是通过使用MessageUI框架来实现的。这个框架为开发者提供了方便的接口,使得在应用程序内部可以触发系统自带的短信应用,完成短信的编写和发送。以下将详细介绍如何在iOS开发中实现这个...

    iOS--发送短信的demo

    在iOS开发中,有时我们需要集成发送短信的功能,以允许用户直接通过我们的应用向指定的电话号码发送信息。这个"iOS--发送短信的demo"就是一个很好的示例,它利用了Apple提供的MessageUI框架来实现这一功能。Message...

    用J2ME接收、发送SMS短信的实例源代码

    在本文中,我们将深入探讨如何使用J2ME来实现SMS短信的接收和发送功能,并基于提供的实例源代码进行学习。 首先,要理解J2ME中的SMS通信,我们需要了解两个关键概念:PDU(Protocol Data Unit)和AT命令。PDU是SMS...

    iOS 短信验证demo

    这个"iOS 短信验证demo"就是一个简单的实例,它演示了如何集成短信验证功能到iOS应用中。通常,这个过程涉及以下几个关键知识点: 1. **集成第三方SDK**:在"SMS_SDK1.0.9"这个压缩包中,很可能包含了一个第三方...

    IOS程序开发之跳转短信发送界面实现发送短信功能

    在iOS应用程序开发中,有时候我们需要集成发送短信的功能,例如进行短信验证。本篇文章将详细介绍如何在iOS程序中跳转到短信发送界面并实现发送短信的功能。主要涉及的技术点是使用苹果提供的`...

    iOS 短息发送小demo 可看到通讯录

    在iOS开发中,实现短信发送功能是常见的需求之一,尤其在一些社交或通知类的应用中。这个名为"iOS 短信发送小demo 可看到通讯录"的项目,提供了调用设备内置短信功能并向通讯录联系人发送短信的能力。在真机上进行...

    iOS之短信,邮件,通信录的实现

    开发者需要先检查设备是否支持发送短信(通过[MFMessageComposeViewController canSendText]),然后创建MFMessageComposeViewController实例,设置其代理(以监听发送状态),最后展示控制器。用户操作完成后,代理...

    系统短信发送 Demo

    在iOS开发中,系统短信发送功能的实现是通过利用苹果提供的特定API来完成的。这个“系统短信发送 Demo”提供了一个实例,展示了如何调用这些接口来触发短信应用,发送预定义的消息。以下是对这个主题的详细解释: 1...

    iOS打电话、发短信、发邮件实例代码

    // 短信实例化 MFMessageComposeViewController *messageVc = [[MFMessageComposeViewController alloc] init]; // 目标号码,可以多个 messageVc.recipients = @[@"18888888888", @"15555555555"]; messageVc....

    ios应用源码之使用messageui发送带附加的邮件mailtest 2018127

    在iOS开发中,MessageUI框架是苹果提供的一种用于创建和发送邮件、短信的应用程序接口。本项目"ios应用源码之使用messageui发送带附加的邮件mailtest 2018127"是一个示例,它展示了如何利用MessageUI框架在iOS应用中...

    ios-发短信.zip

    在iOS平台上,开发一款能够发送短信的应用程序是一项常见的任务,特别是在构建社交、通知或客户服务类应用时。这个名为“ios-发短信.zip”的压缩包很可能包含了一个示例项目,用于演示如何在iOS设备上实现短信功能。...

    iOS各种小功能

    首先,确保应用有发送邮件的权限,然后创建一个`MFMailComposeViewController`实例,设置收件人、主题和邮件正文。显示控制器后,用户可以在弹出的界面中编辑并发送邮件。记得处理用户取消或发送邮件后的回调。 4. ...

    发送短信的Demo

    在iOS开发中,发送短信的功能是一项常见的需求,尤其在用户服务、验证代码或者紧急通知等场景下。本Demo,"发送短信的Demo",通过利用苹果提供的MessageUI框架,为开发者提供了一个简单易用的解决方案。MessageUI...

Global site tag (gtag.js) - Google Analytics