zoukankan      html  css  js  c++  java
  • NSDate conversion utilities

    // Gets UTC NSDate from DateTime(.Net/WCF).

     

    + (NSDate *)fromDateTime:(NSString *)dateTime {
        NSDate *utcDate;
        if ([dateTime isMemberOfClass:[NSNull class]]) {
            utcDate = nil;
        } else {
            NSInteger offset = [[NSTimeZone timeZoneWithName:@"UTC"] secondsFromGMT];
            utcDate = [[NSDate dateWithTimeIntervalSince1970:[[dateTime substringWithRange:NSMakeRange(6, 10)] intValue]] dateByAddingTimeInterval:offset];
        }
        
        return utcDate;
    }

    // Converts NSDate to UTC DateTime(.Net/WCF).

    - (NSString *)toDateTime {
        NSDateFormatter *utcFormatter = [[NSDateFormatter alloc] init];
        [utcFormatter setTimeZone:[NSTimeZone timeZoneWithName:@"UTC"]];
        
        return [NSString stringWithFormat:@"/Date(%.0f000%@)/", [self timeIntervalSince1970],[utcFormatter stringFromDate:self]];
    }


     

    // Converts UTC NSDate to local time.

    - (NSString *)utcToLocalTime {
        // offset second
        NSInteger seconds = [[NSTimeZone systemTimeZone] secondsFromGMT];
        
        NSDateFormatter *localTimeFormatter = [[NSDateFormatter alloc] init];
        [localTimeFormatter setDateFormat:@"MM/dd/yyyy HH:mm"];
        [localTimeFormatter setTimeZone :[NSTimeZone timeZoneForSecondsFromGMT: seconds]];
        
        return [localTimeFormatter stringFromDate:self];
    }



  • 相关阅读:
    Git(五)
    python字符串驻留(intern)机制
    JavaMail接、收邮件
    easyui Tooltip 气泡信息提示
    ligerui ligerTip气泡提示信息
    DES加密
    解决在IE下label中IMG图片无法选中radio的几个方法
    浏览器获取ip地址
    小王子
    jquery 分页
  • 原文地址:https://www.cnblogs.com/pangblog/p/3279762.html
Copyright © 2011-2022 走看看