我从服务器收到字符串形式的日期,我需要根据我的时区显示日期(印度语:GMT +5:30)。 这是我的代码
NSString *dateString = @"2015-08-10 11:45:10";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
//Create the date assuming the given string is in GMT
dateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:0];
NSDate *date = [dateFormatter dateFromString:dateString];
NSLog(@"%@",date);
NSLog(@"%@",[dateFormatter stringFromDate:date]);
//Create a date string in the local timezone
dateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:[NSTimeZone localTimeZone].secondsFromGMT];
NSString *localDateString = [dateFormatter stringFromDate:date];
NSLog(@"date = %@", localDateString);
NSDateFormatter *dateFormatter2 = [[NSDateFormatter alloc] init];
[dateFormatter2 setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
dateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:[NSTimeZone localTimeZone].secondsFromGMT];
NSDate *date2 = [dateFormatter2 dateFromString:localDateString];
NSLog(@"%@",date);
日志是:
2015-08-10 11:45:10 +0000 (NSDate)
2015-08-10 11:45:10 (NSString)
date = 2015-08-10 17:15:10 (NSString)
2015-08-10 11:45:10 +0000 (NSDate)
我的问题是上次登录(2015-08-10 11:45:10 +0000) 为什么不是 2015-08-10 17:15:10 ??
答案 0 :(得分:0)
最后一行打印它的功能,因为您正在打印NSDate
,而NSDate
没有时区。它实际上没有指示时区的属性或内部状态。时区仅用于向用户呈现数据,通常是您通过NSDateFormatter
执行的操作。但是,如果您记录NSDate
的值,那么您将获得GMT字符串,因为NSDate
本身没有时区。