首页 > 其他 > 详细

NSDate NSTimerZone 时区转换

时间:2014-06-07 07:47:23      阅读:402      评论:0      收藏:0      [点我收藏+]

timeZoneAbbreviation = @“America/New_York”;

 

 

#pragma mark - 转换时区

- (NSDate *) convertDate:(NSDate *) date toTimeZone:(NSString *) timeZoneAbbreviation {

    if (!date) {

        return nil;

    }

    NSTimeZone *locationZone  = [NSTimeZonesystemTimeZone];

    NSTimeZone *zoneUTC     =   [NSTimeZone timeZoneWithName:timeZoneAbbreviation];

    NSTimeInterval s        = [zoneUTC secondsFromGMTForDate:date];

    NSTimeInterval p        = [locationZone secondsFromGMTForDate:date];

    NSTimeInterval i = s-p;

    NSDate *d = [NSDatedateWithTimeInterval:i sinceDate:date];

    return d;

}

NSDate NSTimerZone 时区转换,布布扣,bubuko.com

NSDate NSTimerZone 时区转换

原文:http://www.cnblogs.com/tangbinblog/p/3770395.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!