以编程方式在 ios 中的 iMessage 中发送图片+文本?
Posted
技术标签:
【中文标题】以编程方式在 ios 中的 iMessage 中发送图片+文本?【英文标题】:send picture + text in iMessage in ios programatically? 【发布时间】:2014-02-11 10:50:38 【问题描述】:是否有可能
如果有可能有人可以帮助我吗?
【问题讨论】:
这可能会有所帮助。 ***.com/questions/19170516/… 【参考方案1】:是的,你可以这样做,就像做邮件一样,只需这样做
#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];
【讨论】:
以上是关于以编程方式在 ios 中的 iMessage 中发送图片+文本?的主要内容,如果未能解决你的问题,请参考以下文章
Admob 不会为 iOS 10 iMessage 应用扩展加载广告