You must install NSTimeZone
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; [dateFormat setDateFormat:@"YYYY-MM-dd HH:mm:ss"]; [dateFormat setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"UTC"]]; NSDate *date=[dateFormat dateFromString:[NSString stringWithFormat:@"%@",dateString]]; NSLog(@"Date %@",date);
Kingofbliss
source share