I want to send MMS in iOS and for that I will be using Message Composer API. Now I can send mms by adding text in body and image as attachment.
But I want to send message which will be combination of image and text: ex : Hi [image] how are you [image] .
How can I achieve this.
Sending MMS via
MFMessageComposeViewController
is available in iOS 7 only:First check if you can send MSS with the
canSendAttachments
method:The easiest way is to use
addAttachmentURL:withAlternateFilename:
to attach attachments to you messages. You are not able to get your image in the middle of the text.