I can't understand what happening here :( :
NSLog(@"date : %@, hours : %d", self.now, [[self.calendar components:NSHourCalendarUnit fromDate:self.now] hour]);
result
date : 2000-01-01 01:00:19 +0000, hours : 2
Why is it not hours : 1 ? An idea ?
EDIT:
self.calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
and self.now is just a date.