我想从我的手中打开。 “设置>>邮件>>添加帐户”(添加帐户页面)是可能的。?

时间:2011-07-14 06:15:38

标签: iphone xcode ios4 mfmailcomposeviewcontroller

在我的应用程序中,如果用户尚未在其iPhone上配置其电子邮件帐户,则当用户打开应用程序时,它将要求进行电子邮件配置(表示该应用程序重定向到“设置>> mail>>添加帐户“添加帐户页面”,

我该怎么做?

我搜索并在堆栈溢出中发现了一个类似的问题,但它没有帮助。 just like this so question

1 个答案:

答案 0 :(得分:0)

只需查看官方示例代码。这是链接:SampleCode

找到launchMailAppOnDevice()函数。

// Launches the Mail application on the device.
-(void)launchMailAppOnDevice
{
    NSString *recipients = @"mailto:first@example.com?cc=second@example.com,third@example.com&subject=Hello from California!";
    NSString *body = @"&body=It is raining in sunny California!";

    NSString *email = [NSString stringWithFormat:@"%@%@", recipients, body];
    email = [email stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:email]];
}

这对我有用。希望它可以帮到你。