Search code examples
ioscocoa-touchmfmessagecomposeviewcontroller

Sending message with image


Is there any way to use MFMessageComposeViewController or any other controller that may be out there to send a message with an image?

MFMessageComposeViewController apparently does not support that but someone may developed some kind of hack out there... 😃

any way? thanks


Solution

  • You can copy your image programmatically to the clipboard, then let the user paste the image in Message Composer View,

    [UIPasteboard generalPasteboard].image = yourImage;