Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何计算 iOS 中两个日期之间的时间(以小时为单位)
我是 Objective-C 的初学者,所以我需要你在语法制作方面的帮助。
我的问题是这样的:
我有 2 个字符串,我想将其转换为NSDate然后计算日期之间的时间差(以分钟为单位)。
NSDate
我怎样才能做到这一点?
NSDateFormatter
-[NSDate timeIntervalSinceDate:]
或者,您可以使用NSCalendar和NSDateComponents方法计算不同日历的分钟差components:fromDate:toDate:options:。
NSCalendar
NSDateComponents
components:fromDate:toDate:options: