iOS应用发送SMS短消息代码

2015-01-20 0 874
iOS应用发送SMS短消息代码
//Import the MessageUI Framework into your project and 
//#import the header file into the “.h” file of your controller 
//where you want to open the In-App SMS sheet.
-(IBAction) sendInAppSMS:(id) sender
{
    MFMessageComposeViewController *controller =
        [[[MFMessageComposeViewController alloc] init] autorelease];
    if([MFMessageComposeViewController canSendText])
    {
        controller.body = @"Hello from Mugunth";
        controller.recipients = [NSArray arrayWithObjects:
                @"12345678", @"87654321", nil];
        controller.messageComposeDelegate = self;
        [self presentModalViewController:controller animated:YES];
    }
}

遇见资源网 objective-c iOS应用发送SMS短消息代码 http://www.ox520.com/16026.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务