应用启动时启动短信应用

时间:2011-11-30 10:19:06

标签: ios sms

我需要在iPhone中打开预安装的短信应用。 我知道如何使用MFMessageUI类打开SMS应用程序,但问题是它可以用来将其显示为模态视图,而这又需要一个视图控制器。

有人知道如何在AppDelegate didFinishLaunchingWithOptions填充它吗?

2 个答案:

答案 0 :(得分:2)

试试此代码

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms:1234567890"]];

答案 1 :(得分:-1)

NSString *stringURL = @"sms:+12345678901";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];

这:)