I am new to iphone development, i want to create SMS application in my application.I have created mail application using “messageUI.framework”.Is there any framework for creating SMS application.I have no idea of it, so tell me the way of approaching this task. Please guide me to achieve my task.Please help me out.Thanks.
Share
Unfortunately, there is no built-in view controller for sending SMS like MFMailComposeViewController for email.As of iOS 4.0, you can use the MFMessageComposeViewController, a counterpart to the email-only MFMailComposeViewController. This lets you lay out and send an SMS message.
Additionally, you can use the SMS URL scheme, like is decribed in this question. However, it appears that you cannot prepopulate the body of an SMS message this way.