在我的应用程序中,如果用户尚未在其iPhone上配置其电子邮件帐户,则当用户打开应用程序时,它将要求进行电子邮件配置(表示该应用程序重定向到“设置>> mail>>添加帐户“添加帐户页面”,
我该怎么做?
我搜索并在堆栈溢出中发现了一个类似的问题,但它没有帮助。 just like this so question
答案 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]];
}
这对我有用。希望它可以帮到你。