如何更改 MFMailComposeViewController 中显示数据的顺序
我的应用程序中有电子邮件功能。除了消息正文之外,我还在邮件中附加了图像数据。当我们这样做时 [selfpresentModalViewController:emailControlleranimated:YES]; ,它呈现一个视图,其中首先是消息正文,然后是附件数据/图像。
如何更改邮件显示的顺序。我需要首先显示图像,然后显示消息正文。如果有人知道请立即回复。
先感谢您。 :)
I have email functionality in my App. Along with the message body I attach an image data in the mail. While we do [self presentModalViewController:emailController animated:YES]; , it present a view in which, first the message body will be there and then the attachement data/image.
How can I change the order in which the mail showed. I need the image should be shown first and then the message body should follow. If anyone knows please reply immediately.
Thank you in advance. :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MFMailComposeViewController 参考明确指出图片附在正文之后、签名上方
The MFMailComposeViewController reference clearly states that the image is attached after the body and above the signature
这是不可能的,因为
MFMailComposeViewController
是 Apple 提供的内置的,我们只能按原样使用它,不能修改虽然您可以创建自己的自定义 Mail Composer Controller...
It's not possible beacuse
MFMailComposeViewController
is inbuilt that is provided by Apple, and we can only use it as it is, Not modifiedAlthough you can create your own custom Mail Composer Controller...