Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why NSCalendar's dateFromComponents returns wrong date?

I am expecting 2010-10-11 00:00:00

But instead I receive 2010-10-10 21:00:00 +0000

I know, that I can add a few hours and receive desired date, but I do not understand why I get previous day with 21 hours...

Please, help!

NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setYear:2010];
[comps setMonth:10];
[comps setDay:11];

[comps setHour:0];
[comps setMinute:0];
[comps setSecond:0];

NSCalendar *cal = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDate *retDate = [cal dateFromComponents:comps];
like image 763
arthur_skypro Avatar asked Dec 01 '10 09:12

arthur_skypro


1 Answers

I think your problem may be solved by setting the NSTimeZone.

like image 68
KingofBliss Avatar answered Nov 08 '22 04:11

KingofBliss