distriqt / airnativeextensions

DEPRECATED: Original repository of the distriqt native extensions and is no longer maintained. Please see our site for the latest ANEs
https://airnativeextensions.com
2 stars 0 forks source link

Question: when using "Message.service.sendSMSWithUI" in iOS, how can I send message to multiple addresses #149

Closed dmitry-kopitkov closed 10 years ago

dmitry-kopitkov commented 10 years ago

I know that in native code iOS supports such use case

Thanks, Dmitry

koriner commented 10 years ago

Hi - you should send the numbers as a comma delimited string, i.e. "01234567,7654321"

Let us know if that doesn't work.

marchbold commented 10 years ago

Just a correction here, the delimiter is actually a semi-colon, ";", for example:

var address:String = "0444444441;0444444442"
dmitry-kopitkov commented 10 years ago

it works,

thanks