Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have tried searching almost all the blog sites. I need to send an MMS programatically. As far as my research on this I came to know that its not possible for IOS < 3. Is there any way i can use the messageUI kit fot sending MMS for IOS 4.

Please let me know the possible ways.

Thanks in advance!!!

share|improve this question
You should also look at the official documentation before searching blogs. – gcamp Jan 3 '11 at 15:06
You can send MMS. Just please look at this answer which i had posted here stackoverflow.com/a/12739608/1443976 – Venkat Manohar Perepa Oct 5 '12 at 6:02

2 Answers

You cannot send MMS right now. MFMessageComposeViewController only allow SMS messages on iOS 4 only.

share|improve this answer

iOS prevents SMS or MMS messages from being sent programmatically. You can compose the message, providing the "To" and the body of the message (in iOS 4+) and display a dialog that allows the user to tap a button and send it, but user intervention is always required.

share|improve this answer
1  
Why the downvote, mysterious person? Displeased at the accuracy or something? – Matthew Frederick Dec 20 '12 at 6:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.