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