• [ios]字符串转化成NSDate类型 计算与当前时间的相差 月数 天数 【转】


    NSString *dateStr=[dic objectForKey:@"date"];// 2012-05-17 11:23:23

        NSCalendar *gregorian = [[NSCalendaralloc] initWithCalendarIdentifier:NSGregorianCalendar];  

         NSUInteger unitFlags = NSMonthCalendarUnit | NSDayCalendarUnit;  

        NSDateFormatter *format=[[NSDateFormatteralloc] init];

        [format setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

        NSDate *fromdate=[format dateFromString:dateStr];

        NSTimeZone *fromzone = [NSTimeZone systemTimeZone];

        NSInteger frominterval = [fromzone secondsFromGMTForDate: fromdate];

        NSDate *fromDate = [fromdate  dateByAddingTimeInterval: frominterval]; 

         NSLog(@"fromdate=%@",fromDate);

        [format release];

        NSDate *date = [NSDate date];

        NSTimeZone *zone = [NSTimeZonesystemTimeZone];

        NSInteger interval = [zone secondsFromGMTForDate: date];

        NSDate *localeDate = [date  dateByAddingTimeInterval: interval]; 

        NSLog(@"enddate=%@",localeDate);

        NSDateComponents *components = [gregorian components:unitFlags fromDate:fromDate toDate:localeDate options:0];  

        NSInteger months = [components month];  

        NSInteger days = [components day];//年[components year]

        NSLog(@"month=%d",months);

        NSLog(@"days=%d",days);

        [gregorian release];

        if (months==0&&days==0) {

            dateStr=[[dateStr substringFromIndex:11]substringToIndex:5];

            cell.textLabel.text=[NSString stringWithFormat:@"今天 %@",dateStr];//今天 11:23

        }else if(months==0&&days==1){

            dateStr=[[dateStr substringFromIndex:11]substringToIndex:5];

            cell.textLabel.text=[NSString stringWithFormat:@"昨天 %@",dateStr];//昨天 11:23

        }else{

            dateStr=[dateStr substringToIndex:10];

            cell.textLabel.text=dateStr;

        }


  • 相关阅读:
    K2 BPM介绍(2)
    K2 BPM介绍(1)
    认识BPM
    使用VS Code发布博客
    IIS 使用 HTTP/2
    IIS 8的第一次请求不变慢如何配置
    C# 图片识别技术(支持21种语言,提取图片中的文字)
    第九讲 C#练习题
    c#基础 第八讲
    c#基础 第六讲
  • 原文地址:https://www.cnblogs.com/jinjiantong/p/3013710.html
Copyright © 2020-2023  润新知