我想在日曆上安排一個日期,該日期有一個開始時間和結束時間,如果時區在美國,一切工作正常,並且更改日期不幫助,我需要它到委內瑞拉我應該怎麼做,因爲我放置generica,無論何時何地都可以爲我服務?如何使用nsdateformatter到委內瑞拉
這裏我將代碼留作數據,並將我帶入日期格式。
comes the date in the following format: 12/10/2012 05:00 pm
EKEvent* event = [EKEvent eventWithEventStore:eventStore];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setTimeZone:[NSTimeZone localTimeZone]];
[dateFormatter setDateFormat:@"dd/MM/yyyy hh:mm:ss a"];
horafin = [dateFormatter dateFromString:inicio];
horafin = [horafin dateByAddingTimeInterval:3600];
horainicio = [dateFormatter dateFromString:inicio];
[dateFormatter release];
NSString *ti=[[NSString alloc]initWithString:title];
NSLog(@"");
event.title [email protected]"juego";
event.startDate = horainicio;
event.endDate = horafin;
event.URL = [NSURL URLWithString:@"http://pagina.com"];
event.notes = ti;
event.allDay = NO;
vc.event = event;
vc.editViewDelegate = self;
[self presentViewController:vc animated:YES completion:nil];
事件日曆打電話給我正確的,只有當你更改時區失敗,因爲我沒有采取正確的日期,我可以做什麼?我用下面的代碼