亥 我正在开发一个新的应用程序。在其中发送消息到预先配置的号码和用户选择号码。怎么可能?何时按下发送按钮。请帮忙。可以给我一些示例代码或教程。
谢谢
答案 0 :(得分:0)
请阅读以下SO帖子,
How to send SMS and number from contacts?
这是链接可以帮助你...
http://iosdevelopertips.com/cocoa/launching-other-apps-within-an-iphone-application.html
SMS 要打开SMS应用程序,只需在URL中使用sms:protocol:
NSString *stringURL = @"sms:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
您可以指定一个电话号码,但显然不是您邮件的默认文字:
NSString *stringURL = @"sms:+12345678901";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];