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
You can copy your image programmatically to the clipboard, then let the user paste the image in Message Composer View,
[UIPasteboard generalPasteboard].image = yourImage;