-1
NSString * [email protected]"2015-06-29 14:04:41";
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-mm-dd hh:mm:ss"];
NSTimeZone *gmt = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
[dateFormatter setTimeZone:gmt];
NSDate *gmtDate = [dateFormatter dateFromString:date];
格式化至今的回報爲零一段時間一段時間
for example.
if i try 2015-06-29 11:04:41 date it return value
But if i try 2015-06-29 14:04:41 date it return nil
NSDateFormatter返回nill你有什麼想法?
在此先感謝
這只是部分正確的。月份需要是「MM」,而不是「mm」。 – rmaddy
@rmaddy - mea culpa,錯過了,謝謝。編輯爲正確。 – CRD