ios开发之–ZHPickView输出格式不出现 +0000

 这样写就不会输出 +0000了

NSDate *select = [_datePicker date];

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

_resultString=[dateFormatter stringFromDate:select];

输出+0000的原因是 

_resultString=[NSString stringWithFormat:@"%@",_datePicker.date];

这样输出的;