电子邮件 ID 记住我的工作原理

发布于 2024-11-17 06:25:44 字数 86 浏览 1 评论 0原文

我创建了一个登录屏幕,用户可以在其中输入他们的邮件 ID。

但我想插入一个功能,当用户输入邮件 ID 的第一个字符时,它应该自动列出邮件 ID

I have created one Login Screen where user enter their mail id.

But i want to insert one functionality where it should list the mail id automatically when user type first character of mail id

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

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

发布评论

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

评论(2

沫尐诺 2024-11-24 06:25:44

有一种方法。不知道可行性有多大。所以想法是:您可以在登录成功后将所有电子邮件 ID 存储在某处。例如在 sqlite 数据库中。现在,实现“UITextFieldTextDidChangeNotification”的通知中心,并在用户开始在 TextField 中输入时在数据库中搜索字符,并在 UITextField 下显示 UITableview 并显示匹配结果(从输入的字符开始)。

当用户点击 Tablview 的任何单元格时,隐藏 tableview 并在 UITextField 中获取该单元格标签值。就是这样。希望这个逻辑能够发挥作用。

There is one way. I don't know how much feasible it is. So the Idea is : You can store somewhere all the email id after log in success. For example in sqlite database. Now, Implement Notification center for "UITextFieldTextDidChangeNotification" and search for the character in database when user start typing in TextField and show UITableview underneath UITextField with match results (which start from entered character).

When user tap on any cell of Tablview hide tableview and take that cell label value in UITextField. That's it. Hope this logic work.

清眉祭 2024-11-24 06:25:44

您可以将 emaid id 保存在 UserDefaults & 中。随时随地使用它

You can save the emaid id in UserDefaults & use it whereever you want

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