NSDate format issue
问题 Here is the code from the nsdate formatter... for some reason the value dateSelected is incorrect... instead of "April 30 2011 7:55PM" it returns 2011-05-01 02:55... any idea what am i doing wrong? NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init]; [outputFormatter setDateFormat:@"h:mm a"]; objEventInsert.eventtime = [outputFormatter stringFromDate:self.datePicker.date]; NSLog(@"%@",objEventInsert.eventtime); NSDateFormatter *dateForm = [[NSDateFormatter alloc] init];