我正在尝试将字符串转换为日期,但它返回 null。
NSString *offer_publishdate*=@"15/10/2013";
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"yyyyMMdd"];
NSDate *date = [dateFormat dateFromString:offer_publishdate];
NSLog(@"date:%@",date);