在我的应用程序中,如果用户提供了他们的gmail帐户,那么当我们以编程方式选择邮件的gmail选项时,我需要使用gmail登录凭据打开邮件客户端,但如果该帐户已经存储在邮件中,那么我就是需要将用户直接重定向到他们的帐户。任何人都可以给我一瞥如何以编程方式实现这一目标。
答案 0 :(得分:42)
您不会对Mail应用程序有太多控制权,因为iPhone上的所有应用程序都是沙箱,以防止它们弄乱Apple应用程序。
你唯一可以做的事情(如果你想打开邮件客户端发送电子邮件)是这样的:
/* create mail subject */
NSString *subject = [NSString stringWithFormat:@"Subject"];
/* define email address */
NSString *mail = [NSString stringWithFormat:@"test@test.com"];
/* define allowed character set */
NSCharacterSet *set = [NSCharacterSet URLHostAllowedCharacterSet];
/* create the URL */
NSURL *url = [[NSURL alloc] initWithString:[NSString stringWithFormat:@"mailto:?to=%@&subject=%@",
[mail stringByAddingPercentEncodingWithAllowedCharacters:set],
[subject stringByAddingPercentEncodingWithAllowedCharacters:set]]];
/* load the URL */
[[UIApplication sharedApplication] openURL:url];
/* release the URL. If you are using ARC, remove this line. */
[url release];
答案 1 :(得分:4)
夫特:
if let url = NSURL(string: "mailto://\(email)") {
UIApplication.sharedApplication().openURL(url)
}
答案 2 :(得分:4)
莱昂·罗登堡的斯威夫特版本答案:
// define email address
let address = "test@test.com"
// create mail subject
let subject = "Subject"
// create the URL
let url = NSURL(string: "mailto:?to=\(address)&subject=\(subject)".stringByAddingPercentEncodingWithAllowedCharacters(NSCharacterSet.URLQueryAllowedCharacterSet())!)
// load the URL
UIApplication.sharedApplication().openURL(url!)
答案 3 :(得分:2)
我会建议一个更好的答案。 Slack.com移动应用程序执行此操作,它检测设备上列出的常见电子邮件客户端,并显示一个弹出选择器''您想要打开的电子邮件客户端。
所以要实施:
谷歌即将找到十大电子邮件客户端(例如Mail,Google Inbox,OutLook,AirMail等)。
通过搜索所有应用获取手机上已安装应用的列表(但我被告知您现在只能找到是否明确安装了应用,因此您需要检测应用)。
如果检测到超过1个电子邮件应用,则显示一个弹出列表,请求他们“'哪个'应用程序打开例如。邮件,收件箱。
这是我见过的最佳解决方案。