Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

send message automatically without the user interaction [duplicate]

Tags:

xcode

iphone

Possible Duplicates:
How to programmatically send SMS on the iPhone?
How to send SMS from an iPhone app without opening the SMS interface?

I need that my application could to send message automatically without the user interaction.

This is possible? I read something about smslib but is developed in java.

Is there any framework accepted by apple for to do this?

thanks for your time in advance...

like image 510
JoseMa Avatar asked Jul 05 '11 19:07

JoseMa


2 Answers

No, that's not possible. You have to use the MFMessageComposeViewController to get your application accepted by Apple.

like image 173
Henrik P. Hessel Avatar answered Nov 15 '22 06:11

Henrik P. Hessel


You can't do that but you can prepopulate the email so they only have to press send. Have a look at the MFMessageComposeViewController.

like image 35
BDGapps Avatar answered Nov 15 '22 05:11

BDGapps