ios - 如何在数组中存储邮件联系人
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 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.