如何在 IOS 中自动填充反馈表中的电子邮件地址?

发布于 2024-10-30 11:02:10 字数 186 浏览 0 评论 0原文

Wakemate 在 iPhone 应用程序的反馈表单中自动填充用户电子邮件地址方面做得非常出色。请参阅此处:

有人知道如何执行此操作(需要注意的是我们使用 Facebook Connect 进行登录)?

在此处输入图像描述

Wakemate does an amazing job of auto-populating a users email address in a Feedback form in an iphone app. See here:

Does anyone know how to do this (with the caveat that we are using Facebook Connect for login)?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回忆那么伤 2024-11-06 11:02:10

我认为你应该阅读 Apple 文档
它将帮助您以及这里使用的 ui,这只是因为它们可能是 MFMailComposeViewController 的子类

I think you should read Apple docs
it will help you and more over the ui that is being used here is just because they probably subclassed MFMailComposeViewController

三五鸿雁 2024-11-06 11:02:10

您可以将这段代码用于您的目的。

picker.mailComposeDelegate = self;
NSArray *toRecipients = [NSArray arrayWithObject:@"[email protected]"];
NSString *tosubject =txtSubject.text;
[picker setSubject:tosubject];


// Set up recipients
[picker setToRecipients:toRecipients];

干杯

You can use this block of code for your purpose.

picker.mailComposeDelegate = self;
NSArray *toRecipients = [NSArray arrayWithObject:@"[email protected]"];
NSString *tosubject =txtSubject.text;
[picker setSubject:tosubject];


// Set up recipients
[picker setToRecipients:toRecipients];

Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文