如何从iPhone应用程序访问和打开iPhone的SMS API

时间:2010-11-27 09:02:26

标签: iphone cocoa-touch ios4 sms

在我的iPhone应用程序中,我需要访问SMS应用程序。

当我点击我的iphone应用程序中的按钮时,我需要这样做。它应该打开iphone的短信应用程序并使用我在我的应用程序中指定的文本预加载邮件正文。

我们如何从iPhone应用程序访问SMS API?

应该做什么?

2 个答案:

答案 0 :(得分:3)

这可以从iOS 4.0开始;使用 MessageUI 框架中的 MFMessageComposeViewController

详细信息和示例:http://developer.apple.com/library/ios/#samplecode/MessageComposer/Introduction/Intro.html

答案 1 :(得分:1)

试试这个:

MFMessageComposeViewController *pickerSMS = [[MFMessageComposeViewController alloc] init];
pickerSMS.messageComposeDelegate = self;

pickerSMS.body = @"hello!";

[self presentModalViewController:pickerSMS animated:YES];
[pickerSMS release];