日期验证
我有两个文本字段。在这些文本字段中,我从选择器中获取以下格式的日期:“mm-dd-yyyy”。我想要做的是验证从一个文本字段到另一个文本字段的日期,以便两个文本字段不会填充相同的日期,并且第一个文本字段的日期始终大于第二个文本字段的日期。谁能解释一下如何在 iPhone 上执行此操作?
I have two text fields. In these text fields, I am getting dates from a picker in this format: "mm-dd-yyyy". What I want to do is validate the dates from one text field to the other, so that both text fields are not filled with the same date and also the first text field's date is always greater than the second's. Can anyone explain how to do this on iPhone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
[NSDate比较:];
来自文档You can use
[NSDate compare:];
From documentation由于您将从文本字段中获取字符串,因此您可以进行字符串比较。
Since, from textFields, you will be getting strings, you can do stringComparison.