mica
mica

Reputation: 4308

unexpected result of dateFromComponents:

the following code

NSCalendar *cal = [NSCalendar currentCalendar];
[cal setFirstWeekday:2];
[cal setMinimumDaysInFirstWeek:4];

NSDateComponents *comp = [[NSDateComponents alloc] init];
[comp setYear: 2012];
[comp setMonth:3];
[comp setDay: 12];
NSDate *date = [cal dateFromComponents:comp];
NSLog(@"date:%@",date);

logs:

date:2012-03-11 23:00:00 +0000

Any Idea, why this happen and how to avoid Tnx

Upvotes: 2

Views: 1163

Answers (3)

grahamparks
grahamparks

Reputation: 16296

When you call dateFromComponents: you lose all of the timezone and calendar information and are left an NSDate object that contains the moment in time your date components represent, but nothing else. When you use NSLog on your NSDate object, that moment in time is converted to a time in UTC and rendered as a human readable string.

You need to provide more info about what you're trying to achieve to be able to answer your second question of how to avoid this.

Upvotes: 2

Krumelur
Krumelur

Reputation: 32497

I assume you are using the CET time zone locally. This is what the [NSCalendar currentCalendar] will use as a time zone then.

When you dump a NSDate with NSLog, you will get the date in its raw UTC form. To print the date using a local format, look into the NSDateFormatter class, which has a timeZone property:

....
NSDate *date = [cal dateFromComponents:comp];
NSDateFormatter* fmt = [[NSDateFormatter alloc] init];
fmt.timeZone = [NSTimeZone defaultTimeZone]; // Probably not required
NSLog(@"date:%@", [fmt stringFromDate:date]);

Upvotes: 2

Parag Bafna
Parag Bafna

Reputation: 22930

set timezone

NSCalendar *cal = [NSCalendar currentCalendar];

[cal setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"GMT"]];

Upvotes: 2

Related Questions