//世界时间转换为本地时间
- (NSDate *)worldDateToLocalDate:(NSDate *)date
{
//获取本地时区(中国时区)
NSTimeZone* localTimeZone = [NSTimeZone localTimeZone];
//计算世界时间与本地时区的时间偏差值
NSInteger offset = [localTimeZone secondsFromGMTForDate:date];
//世界时间+偏差值 得出中国区时间
NSDate *localDate = [date dateByAddingTimeInterval:offset];
return localDate;
}
网友评论