我正在开发一个简单的应用程序,我需要在其中以编程方式向我的 friend 发送短信。
所以写下面的代码来发送短信。
MFMessageComposeViewController *picker = [[[MFMessageComposeViewController alloc] init]autorelease];
if([MFMessageComposeViewController canSendText])
{
picker.messageComposeDelegate = self;
picker.recipients =[NSArray arrayWithObject"123"];
picker.body=@"hello";
[self presentModalViewController:picker animated:YES];
}
但我不想加载消息选择器并向 friend 发送短信。
//[self presentModalViewController:picker animated:YES];
是否可以在不点击发送按钮的情况下发送短信。
Best Answer-推荐答案 strong>
iOS API 中可用的两个选项是:
MFMessageComposeViewController - 需要用户确认
sms:// 网址 - 需要用户确认
如果您想做其他事情,则需要使用 SMS 网关提供商设置基于网络的服务并通过该服务发送消息。我曾经与这样一个提供 HTTP POST 接口(interface)的提供商合作,该接口(interface)使用起来非常简单。这带来了几个重要的区别:
- SMS 实际上是由网关服务器发送的,而不是手机(尽管您通常可以重写发送者 ID 并将消息计费给手机所有者)
- 您需要为访问服务付费,其中可能包括为每条消息付费(或者更有可能是每 1000 条消息付费)
另请注意,在审核您的应用时,代表您的用户发送 SMS 而不进行确认可能会遭到反对,尤其是在为他们付费的情况下。
关于ios - iphone 4.0 以编程方式发送短信,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/3758664/
|