iphone,objective c - 日期比较

发布于 2024-10-14 21:57:32 字数 434 浏览 2 评论 0原文

如何比较目标中的日期 c.我有三个 nsstring 格式的日期。在这里,我必须检查一个日期是否发生在其他两个日期之间或等于其他两个日期。如何实现这个任何源代码和教程,想法......?

这是我到目前为止所做的...

NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; 

[dateFormat setDateFormat:@"yyyy/dd/MM"]; 

NSDate *date1 = [dateFormat dateFromString:[State getIncurredDate]];
NSDate *date2 = [dateFormat dateFromString:startDate];
NSDate *date3 = [dateFormat dateFromString:endDate];

How to compare date in objective c. i have three date in nsstring format. Here i have to check whether a date is occurred inbetween or equal to two other dates. How to implement this any source code and tutorials, idea...?

here what i done so far...

NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; 

[dateFormat setDateFormat:@"yyyy/dd/MM"]; 

NSDate *date1 = [dateFormat dateFromString:[State getIncurredDate]];
NSDate *date2 = [dateFormat dateFromString:startDate];
NSDate *date3 = [dateFormat dateFromString:endDate];

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

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

发布评论

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

评论(2

节枝 2024-10-21 21:57:32
if( [date isEqualToDate:otherDate] )
  NSLog(@"%@ is equal to %@",date,otherDate);

完毕。

if( [date isEqualToDate:otherDate] )
  NSLog(@"%@ is equal to %@",date,otherDate);

Done.

慕巷 2024-10-21 21:57:32

您可以将日期转换为 TimeInterval(自某个参考日期以来)并仅比较数字。

You can convert your dates into TimeInterval (since some reference date) and just compare numbers.

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