How to compare two dates in iphone?(如何比较iphone中的两个日期?)
问题描述
我想比较今天的日期和来自我的数据库的其他日期.例如,2011-03-25 与 2011-02-25 比较
I want to compare the todays date and other date coming from my database. For example, 2011-03-25 compare it with 2011-02-25
由于 NSDateFormatter 需要 NSDdate 数据类型,我如何格式化我的数据库日期?
How can i formate my database date as the NSDateFormatter require NSDdate datatype ?
推荐答案
Cocoa 有两种方法:
在 NSDate 中
– isEqualToDate:
– 较早日期:
– 稍后日期:
– 比较:
– isEqualToDate:
– earlierDate:
– laterDate:
– compare:
当你使用 - (NSComparisonResult)compare:(NSDate *)anotherDate 时,你会得到其中之一:
When you use - (NSComparisonResult)compare:(NSDate *)anotherDate ,you get back one of these:
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.
有关更多信息,请阅读 SO 帖子
for more read the SO post
浏览一下博文,有很多与日期相关的实用功能.
Just go through the blog post, there are many date related utility functions.
http://arstechnica.com/apple/guides/2010/03/how-to-real-world-dates-with-the-iphone-sdk.ars/2
这篇关于如何比较iphone中的两个日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何比较iphone中的两个日期?
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01