サーバーはUTC形式の日付と時刻を提供します。
2012-11-28T10:32:15+01:00
UTCは次のようにフォーマットされます:2012-11-28 10:32:15
現在の実際の現地日時は2012-11-28 11:32:15
utc形式をデータベースに保存し、後でUIに表示する前に、ユーザーのローカルの日付と時刻に変換したいと思います。私は次のコードを書きました。しかし、時間オフセットは間違っています。時間オフセットは+1時間ですが、UTC時間に1時間ではなく2時間を追加します。
NSDateFormatter *utc = [[NSDateFormatter alloc] init];
[utc setTimeZone:[NSTimeZone timeZoneWithName:@"UTC"]];
[utc setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *dtUTC = [utc dateFromString:@"2012-11-28 10:32:15"];
double i =[[NSTimeZone systemTimeZone] secondsFromGMTForDate:[NSDate date ]];
NSDateFormatter *dfLocal = [[NSDateFormatter alloc] init];
[dfLocal setDateFormat:@"yy-MM-dd HH:mm:ss"];
[dfLocal setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:i]];
NSDate *localDateTime= [dtUTC dateByAddingTimeInterval:i];
NSString *time =[dfLocal stringFromDate:localDateTime];
NSLog(@"original UTC %@ now local: %@", dtUTC, time);
およびログ:
time offset : 1.000000
original UTC 2012-11-28 10:32:15 +0000 now local: 12-11-28 12:32:15
それはあるべきですが、
私が間違っていること2012-11-28 11:32:15
を与え ますか?2012-11-28 12:32:15