Pergunta

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?

Foi útil?

Solução

dateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:0];
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top