在ios编程的iMessage发送图片+文本?

有没有可能发送iMessage中的图片+文本在ios编程?

如果有可能的话,谁能帮助我?

是的,你可以做到这一点,就像做邮件一样

#import <MessageUI/MFMessageComposeViewController.h> MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init]; picker.messageComposeDelegate = self; picker.recipients = [NSArray arrayWithObject:@"123456789"]; // your recipient number or self for testing picker.body = @"test from OS4"; NSData*imageData=[NSData dataWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"image" ofType:@"png"]]; [picker addAttachmentData:imageData typeIdentifier:(NSString *)kUTTypePNG filename:@"image.png"]; [self presentModalViewController:picker animated:YES];