tags:

views:

89

answers:

2

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
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