我有一个 UITextField,用户将输入手机号码。用户触摸 IBAction 按钮并将其传递给 MFMessageComposeViewController 短信收件人。似乎收件人不会允许使用 NSString。将 NSString 传递给正文有效,但不是收件人。
-(IBAction)buttonSMS: (id)sender
{
if([MFMessageComposeViewController canSendText])
{
MFMessageComposeViewController *picker = [[MFMessageComposeViewController alloc] init];
picker.recipients=[NSArray arrayWithObjects:@"15557774444", nil];
picker.body = textField.text;
picker.messageComposeDelegate = self;
[self presentViewController:picker animated:YES completion:NULL];
}
}
这是我试过的
picker.recipients = telField.text;
代替
picker.recipients=[NSArray arrayWithObjects:@"15557774444", nil];
有人可以用一些示例代码指出我的仪式方向吗.....请谢谢
html、javascript 和 css 方面的专家,但目标 c 方面的新手