如何使用IOS Simulator以编程方式发送SMS

时间:2013-02-05 12:03:22

标签: iphone ios

我很想做一个可以使用IOS模拟器以编程方式发送短信的应用程序。 可以请一些请告诉我步骤的顺序。 什么是代码以及我们如何逐步使用它来详细说明。

感谢。

1 个答案:

答案 0 :(得分:1)

Ios similator无法发送消息,但您可以通过使用此代码在服务中运行项目来发送消息。

在项目中添加MessageUI框架

然后在.h文件中添加此

#import <MessageUI/MessageUI.h>

@interface MessageViewController : UIViewController<MFMessageComposeViewControllerDelegate>

- (IBAction)SendTextBtnTapped:(id)sender;

@end

在.m文件中添加此

- (IBAction)SendTextBtnTapped:(id)sender {
    [self sendSMS:@"" recipientList:[NSArray arrayWithObjects: nil]];
}

//for sms

- (void)sendSMS:(NSString *)bodyOfMessage recipientList:(NSArray *)recipients
{
    MFMessageComposeViewController *controller = [[MFMessageComposeViewController alloc] init];
    if([MFMessageComposeViewController canSendText])
    {
        controller.body = bodyOfMessage;    
        controller.recipients = recipients;
        controller.messageComposeDelegate = self;
        controller.navigationBar.barStyle = UIBarStyleBlackTranslucent;
        [self presentModalViewController:controller animated:YES];
        [[UIApplication sharedApplication] setStatusBarHidden: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");
}