Duck
Duck

Reputation: 35953

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

Upvotes: 1

Views: 881

Answers (1)

Thilina Chamath Hewagama
Thilina Chamath Hewagama

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

Related Questions