ios - 如何在数组中存储邮件联系人

发布于 2024-11-26 08:03:01 字数 234 浏览 0 评论 0原文

在我的 ios 应用程序中,当用户单击按钮时,它会打开电子邮件部分,用户可以通过该部分向所有人发送常见邮件。

现在我的问题是,每当用户在 to: 列中输入电子邮件地址时,我希望将地址自动存储到数组中,以便下次用户单击 to< /code> 我将列出他迄今为止使用过的电子邮件。

我想将在那里输入的文本存储到一个数组中。

怎么办,请朋友们帮帮我

in my ios app when the user clicks a button it opens email part by which the user can send a common mail to all.

Now my question is whenever the user types an email address in the to: column i want the addresses to be stored automatically to an Array, so that the next time when the user clicks the to column i will be listing out the emails he have used so far.

I want to store the text typed there to an array.

how to do this, please help me friends

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

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

发布评论

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

评论(1

似最初 2024-12-03 08:03:01

您可以在 NSMutableArray 中添加电子邮件并将其保存在 NSUserDefaults 中以供将来使用,每次用户输入电子邮件时,您都必须创建新的临时 NSMutableArray,该临时 NSMutableArray 用 NSUserDefaults 的数组初始化,然后将最后一个条目附加到其中,并通过替换最后一个值将其再次保存在 NSUserDefault 中。

you can add the emails in NSMutableArray and save it in NSUserDefaults for future, each time user enter email you have to create new temp NSMutableArray which init with NSUserDefaults's array then append last entry to it after that and save it again in NSUserDefault by replacing last value.

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