iOS in MessageComposer add image and text

681 views Asked by At

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.

1

There are 1 answers

0
rckoenes On

Sending MMS via MFMessageComposeViewController is available in iOS 7 only:

First check if you can send MSS with the canSendAttachments method:

if ([MFMessageComposeViewController canSendAttachments]) {
    // YES we can send a MMS
}

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.