1

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

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Duck
  • 34,902
  • 47
  • 248
  • 470

1 Answers1

1

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

[UIPasteboard generalPasteboard].image = yourImage; 
Thilina Chamath Hewagama
  • 9,039
  • 3
  • 32
  • 45