サーバーから GMT 時間構造 (ユーザー定義構造) を受信しています。それを使用して、それを現地時間に変換します。受け取った構造を NSDatecomponent に入力してから、日付フォーマッタを使用して日付を取得しました。それは、1 つのケースを除いてすべて正常に動作します。GMT 時間が 11 月 3 日 (米国の夏時間の変更) より後の場合、フォーマッターは 1 時間の時差を生成します。
例: 予定時刻が 11 月 3 日午後 4 時である場合、GMT からローカルに変換すると、11 月 3 日午後 3 時になります。
それを回避する方法を考えてください。
編集:
// Selected Dates
NSDateComponents *sel_date = [[NSDateComponents alloc]init];
sel_date.second = sch_detail.sel_dates.seconds;
sel_date.minute = sch_detail.sel_dates.mins;
sel_date.hour = sch_detail.sel_dates.hours;
sel_date.day = sch_detail.sel_dates.date;
sel_date.month = sch_detail.sel_dates.month;
sel_date.year = sch_detail.sel_dates.year;
sel_date.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
// Get the Date format.
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
[gregorian setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"GMT"]];
// Start_date formatter.
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"MMM dd, yyyy hh:mm a"];
[dateFormatter setTimeZone:[NSTimeZone localTimeZone]];
NSDate *strt_date_loc = [gregorian dateFromComponents:sel_date];
// Get date string.
NSString *sel_date_time = [dateFormatter stringFromDate: strt_date_loc];+
sel_date_time 文字列は、想定よりも 1 時間短くなっています。
ログ:
strt_date_loc = 2013-11-30 06:56:00 +0000
sel_date_time = 2013 年 11 月 29 日午後 10 時 56 分 (ただし、午後 11 時 56 分である必要があります)
TimeZone : パロアルト (米国)
ローカルから gmt への変換:
- (NSDateComponents*) convert_to_gmt_time : (NSDate*) date
{
NSDate *localDate = date;
NSTimeInterval timeZoneOffset = [[NSTimeZone defaultTimeZone] secondsFromGMT];
NSTimeInterval gmtTimeInterval = [localDate timeIntervalSinceReferenceDate] - timeZoneOffset;
NSDate *gmtDate = [NSDate dateWithTimeIntervalSinceReferenceDate:gmtTimeInterval];
NSDateComponents *date_comp = [[NSCalendar currentCalendar] components: NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit fromDate:gmtDate];
return date_comp;
}
ありがとう。