群发短信 发短信(带图片)

来源:互联网 发布:建立淘宝店铺 编辑:程序博客网 时间:2024/04/28 03:50
/**
 *  群
发短信
 *
 * 
@paramshareImage <#shareImage description#>
 */

- (
void)sendSMS:(UIImage*)shareImage
 withMoblieList:(
NSArray*)mobileList
{

   
MFMessageComposeViewController*picker = [[MFMessageComposeViewControlleralloc]init];
   
if([MFMessageComposeViewControllercanSendText]) {
       
NSMutableString*emailBody = [[NSMutableStringalloc]initWithString:@""];
        picker.
messageComposeDelegate= self;
        picker.
recipients= [[NSArrayalloc]initWithArray:mobileList];
        [picker
setBody:emailBody];// your recipient number or self for testing
        picker.
body= emailBody;
        [picker
addAttachmentData:UIImageJPEGRepresentation(shareImage,.6ftypeIdentifier:@"image/jpg"filename:@"res.jpg"];
        [
selfpresentViewController:pickeranimated:YEScompletion:NULL];
    }
   
}
0 0
原创粉丝点击