如何验证文本字段
在我的应用程序中,我使用一个文本字段作为电子邮件,另一个文本字段作为用户名和按钮,输入数据后在按钮事件下编写代码单击按钮显示另一个视图,我的问题是编写电子邮件验证代码([电子邮件受保护] 以这种格式)这些警报视图在单击按钮时显示(消息输入正确的电子邮件格式),但我想要显示这些警报移动到下一个文本字段假设我以错误的格式输入了电子邮件并将电影发送到下一个字段,此时将显示电子邮件警报视图的用户名文本字段。
In my App I take one textfield for email and another one for username and button, write code under button event after enter data click button display another view,my problem is write code for email validation([email protected] in this format) these alert view is display when button click (msg-enter correct email format) but I want display these alert move to next textfiled suppose I entered email in wrong format and movie to next field it username textfiled at that time email alert view will display.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
NSPredicate
和Regex
:对于用逗号 (,) 分隔的电子邮件:
Use
NSPredicate
andRegex
:For emails separated by a comma (,):
检查此处。电子邮件验证
Check Here.Email Validation
我已经在 editingDidEnd 事件上验证了我的字段并使用了以下代码:
尝试这些,然后在任何相关事件上调用,您将获得所需的结果。祝你好运 :)
I have validated my fields on editingDidEnd event and used following code:
Try these, call then on any relevant event, You'll have desired result. good Luck :)