首页 > NSDate NSCalendar NSString之间的故事以及转换

NSDate NSCalendar NSString之间的故事以及转换

1.NSDate 和 NSString 之间的转换

  • 这之间的转换主要依靠NSDateFormatter
  • NSDate <------> NSString
    NSDateFormatter *formatter = [[NSDateFormatter alloc]init];formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";NSString *strDate = [formatter stringFrom:date];NSDate *date =[formatter dateFrom:str];

其中dateFormat格式可以参考苹果官方文档Working With Fixed Format Date Representations

2.NSDate通过NSCalendar操作

  • 转化为NSCalendar方便于获得各种日期参数
-(NSDateComponents*)getDateComponentsFromDate:(NSDate*)date{NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];//设置成中国阳历NSDateComponents *comps = [[NSDateComponents alloc] init];NSInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;//这句我也不明白具体时用来做什么。。。comps = [calendar components:unitFlags fromDate:date];return comps;
}
  • NSDateComponets 可以获得 年,月,日,以及第几个星期等等

3. NSDate之间的比较

  • 一般用来做文件夹排序等操作
[_dateDirArray sortedArrayUsingComparator: ^NSComparisonResult(__nonnull id obj1,__nonnull id obj2){NSString *stringDateObj1 = obj1;NSString *stringDateObj2 = obj2;NSDate *dateObj1 = [dateFormatter dateFromString:stringDateObj1];NSDate *dateObj2  =[dateFormatter dateFromString:stringDateObj2];return [dateObj1 compare:dateObj2];}]
  • 另外一种用来计算两者之间的时间差
 //lastDate和nowDate为NSDate类型,最后得到的秒数为lastDate-nowDate所得NSInteger timeDistance= [lastDate timeIntervalSinceDate:nowDate]

以及

    // 时间1NSDate *date1 = [NSDate date];NSTimeZone *zone1 = [NSTimeZone systemTimeZone];NSInteger interval1 = [zone1 secondsFromGMTForDate:date1];NSDate *localDate1 = [date1 dateByAddingTimeInterval:interval1];// 时间2NSDate *date2 = [NSDate date];NSTimeZone *zone2 = [NSTimeZone systemTimeZone];NSInteger interval2 = [zone2 secondsFromGMTForDate:date2];NSDate *localDate2 = [date2 dateByAddingTimeInterval:interval2];// 时间2与时间1之间的时间差(秒)double intervalTime = [localDate2 timeIntervalSinceReferenceDate] - [localDate1 timeIntervalSinceReferenceDate];NSInteger seconds = lTime % 60;NSInteger minutes = (lTime / 60) % 60;NSInteger hours = (lTime / 3600);NSInteger days = lTime/60/60/24;NSInteger month = lTime/60/60/24/12;NSInteger years = lTime/60/60/24/365;

转载于:https://www.cnblogs.com/RoysPhoneBlog/p/9321448.html

更多相关:

  • http://blog.csdn.net/lingedeng/article/details/6996599 Dates         NSDate类提供了创建date,比较date以及计算两个date之间间隔的功能。Date对象是不可改变的。         如果你要创建date对象并表示当前日期,你可以alloc一个NSDate...

  • function getYearMonthList(startDate, endDate) {//返回月份的数组 如 ['2021/07','2021/08']var arr = [];var s = new Date(startDate).toLocaleString("zh-Hans-CN", {year: "numeric",...

  • 0.cal 2019  #输出日历并显示今天是哪一天 1.命令“date”,显示系统的当前日期和时间; 2.命令“date 040100002016”,屏幕显示新修改的系统时间;  #不太明白 3. 转载于:https://www.cnblogs.com/Formulate0303/p/11142997.html...

  • 题目1 --日期 借助随机数,创建一个从1995.1.1 00:00:00 到 1995.12.31 23:59:59 之间的随机日期 package date;import java.util.Date;public class TestDate {public static void main(String[] args) {lo...

  • 一、Date类型的初始化 1、 Date(int year, int month, int date); 直接写入年份是得不到正确的结果的。 因为java中Date是从1900年开始算的,所以前面的第一个参数只要填入从1900年后过了多少年就是你想要得到的年份。 月需要减1,日可以直接插入。 这种方法用的比较少,常用的是第二种方法。...

  • 一.获取当前时间 1.1创建一个日期对象 NSDate *date = [NSDate date];NSLog(@"%@",date);   输出结果: 2016-07-01 17:31:02.410 OCString[907:402963] 2016-07-01 09:31:02 +0000 //因为时...