我需要在iPhone中打开预安装的短信应用。
我知道如何使用MFMessageUI
类打开SMS应用程序,但问题是它可以用来将其显示为模态视图,而这又需要一个视图控制器。
有人知道如何在AppDelegate didFinishLaunchingWithOptions
填充它吗?
答案 0 :(得分:2)
试试此代码
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms:1234567890"]];
答案 1 :(得分:-1)
NSString *stringURL = @"sms:+12345678901";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
这:)