문제

The time is given as timestamp (in seconds). I need time only, so I take any date and add this time interval. For example:

NSDate *td = [NSDate dateWithTimeIntervalSince1970:interval];
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
dateFormatter.dateFormat = @"HH:mm";
dateFormatter.locale = @"en_GB";
NSString *result = [dateFormatter stringFromDate:d];

But it works incorrect: for 32400 it shows 12:00 (MSK) instead of 9:00. How to solve this issue?

도움이 되었습니까?

해결책

dateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:0];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top