博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ios中比较两个日期之间的时间差距
阅读量:4984 次
发布时间:2019-06-12

本文共 416 字,大约阅读时间需要 1 分钟。

1.比较两个日期之间的时间差距

// 1.日历对象(标识:时区相关的标识)

NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];

 

// 2.合并标记

NSUInteger flags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;

 

// 3.比较

return [calendar components:flags fromDate:from toDate:to options:0];

转载于:https://www.cnblogs.com/changxs/p/3434386.html

你可能感兴趣的文章