IOS 在App中发送SMS短信

来源:互联网 发布:windows live writer 编辑:程序博客网 时间:2024/05/19 13:56
//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 =        [[[MFMessageComposeViewControlleralloc] init] autorelease];    if([MFMessageComposeViewControllercanSendText])    {        controller.body= @"Hello from Mugunth";        controller.recipients= [NSArray arrayWithObjects:                @"12345678",@"87654321", nil];        controller.messageComposeDelegate= self;        [selfpresentModalViewController:controlleranimated:YES];    }}