开发者

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜