objective-c字符串轉化成NSDate類型,計算與當前時間的相差,月數,天數

jopen 9年前發布 | 1K 次閱讀 Objective-C IOS

NSString *dateStr=[dic objectForKey:@"date"];// 2012-05-17 11:23:23
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
     NSUInteger unitFlags = NSMonthCalendarUnit | NSDayCalendarUnit;
    NSDateFormatter *format=[[NSDateFormatter alloc] 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 = [NSTimeZone systemTimeZone];
    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;
    }

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!