Multiple recipients using SMS URL on iPhone
Is there a way to use the SMS URL to open the SMS app with multiple recipients? I've tried similar approaches to the mailto:
protocol but开发者_C百科 it's not playing nice.
Starting with iOS 4.x you can include multiple recipients as shown below:
MFMessageComposeViewController *controller = [[MFMessageComposeViewController alloc] init];
controller.recipients = [NSArray arrayWithObjects:@"1-222-333-4444", @"1-222-333-5555", nil];
As you probably noticed, the documentation does not mention any support for multiple recipients, so I think the answer is currently "No".
You could file an enhancement request here.
精彩评论