日期验证

发布于 2024-11-05 06:58:19 字数 150 浏览 0 评论 0原文

我有两个文本字段。在这些文本字段中,我从选择器中获取以下格式的日期:“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 技术交流群。

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

发布评论

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

评论(2

小女人ら 2024-11-12 06:58:19

您可以使用[NSDate比较:];来自文档

比较

返回一个NSComparisonResult
表示时间顺序
接收者和另一个给定的
日期。

- (NSComparisonResult)比较:(NSDate *)anotherDate

参数

另一个日期

与接收器进行比较的日期。
该值不能为零。如果该值为 nil,则行为为
未定义,将来可能会改变
Mac OS X 版本。

返回值

如果:

接收者和 anotherDate 完全相等,NSOrderedSame

接收者的时间晚于 anotherDate,NSOrderedDescending

接收者的时间早于 anotherDate,NSOrderedAscending。

You can use [NSDate compare:];From documentation

compare:

Returns an NSComparisonResult value
that indicates the temporal ordering
of the receiver and another given
date.

- (NSComparisonResult)compare:(NSDate *)anotherDate

Parameters

anotherDate

The date with which to compare the receiver.
This value must not be nil. If the value is nil, the behavior is
undefined and may change in future
versions of Mac OS X.

Return Value

If:

The receiver and anotherDate are exactly equal to each other, NSOrderedSame

The receiver is later in time than anotherDate, NSOrderedDescending

The receiver is earlier in time than anotherDate, NSOrderedAscending.

如梦初醒的夏天 2024-11-12 06:58:19

由于您将从文本字段中获取字符串,因此您可以进行字符串比较。

[textField1.text
isEqualToString:textField2.text];

Since, from textFields, you will be getting strings, you can do stringComparison.

[textField1.text
isEqualToString:textField2.text];

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