In iPhone app Development, we can use "openURL" to send SMS. But the problem is that, the app quits and opens SMS application. How can I send 10 different customized SMS to 10 different phone numbers without quitting application?
A:
There's no way to do exactly that -- presumably to stop unscrupulous applications spamming your contact list.
You can allow a user to send an SMS without existing your application by using the MFMessageComposeViewController
, which is only available in iOS4. You can fill in the defaults but it's up to the user to press the "Send" button.
Stephen Darlington
2010-08-23 09:53:35
A:
in iOS4, you app will goto into the background, so it is possible that the app wont quit. I think you can also send the same message to 10 different people.
But to send 10 different messages, thats is a bit of spam engine, and apple dont allow things like this.
John Ballinger
2010-08-23 09:56:46