gpt4 book ai didi

iphone - 如何以编程方式通过短信将图片作为附件发送?

转载 作者:行者123 更新时间:2023-12-03 21:19:36 24 4
gpt4 key购买 nike

我想通过 iPhone 应用程序发送图片。

由于无法发送彩信,我找到了一些关于将图片作为短信附件发送的答案。如何以编程方式做到这一点?

最佳答案

这是代码:

    MFMessageComposeViewController *sms = [[MFMessageComposeViewController alloc]init];
[sms setMessageComposeDelegate:self];
[sms setRecipients:[NSArray arrayWithObject:@"123-4567"]];
[sms setSubject:@"Subject"];
[sms setBody:@"Body"];
[sms addAttachmentData:myData typeIdentifier:@"type" filename:myFile];
[sms setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];
[self presentViewController:sms animated:YES completion:NO];

希望有帮助。

关于iphone - 如何以编程方式通过短信将图片作为附件发送?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6081927/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com