Ben 2010-10-11 00:00:00Neden NSCalendar'ın dateFromComponents yanlış bir tarih döndürüyor?
bekliyorum Ama bunun yerine Biliyorum 2010-10-10 21:00:00 +0000
Birkaç saat ekleyebileceğiniz, alıp istenen tarihi al, ama neden 21 saat önce bir gün aldığımı anlamıyorum ...
Lütfen yardım edin!
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];
evet, haklısın gerek! \t [cal setTimeZone: [NSTimeZone timeZoneWithAbbreviation: @ "GMT"]]; Sorun çözüldü –
hmmm ... coool ... :) – KingofBliss