hit counter

Timeline

My development logbook

Changing NSTimeZone

To convert a NSDate into another Timezone

1
2
3
4
5
6
7
8
    NSCalendarUnit val = NSCalendarUnitYear|NSCalendarUnitHour;
    NSCalendar* dupCal =  [[NSCalendar currentCalendar] copy];

    [dupCal setTimeZone:toTimeZone]; // setting to a different timezone
    NSDateComponents *dupComponents = [dupCal components:val fromDate:[NSDate date]];

    // print out the time and check
    NSLog(@"%ld", (long)[dupComponents hour]);