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]; 
    } 
}

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/5244.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论