What I'm trying to replicate:
The app 'Cobook Contacts' allows you to select multiple contacts. You can then send a message to these contacts. The app does this by opening the native messages app, and populating it with MULTIPLE NUMBERS.
What I've tried:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms:123,456"]];
This only opens messages with the first number populated.
What I Need:
A way to replicate what Cobook Contacts does. Using an MFMessageComposeController is not good enough, I'd like to open the native messaging app. Working example code is bounty worthy.
UPDATE:
I haven't gotten anywhere further, but the object files for the cobook app are actually available at https://cobook.co/open-source. I don't know if it's possible to reverse engineer this to the extent of finding out how they open the message app however.