我已經嘗試了很多東西,通過我得到的幫助,但我仍然無法弄清楚如何正確地做到這一點。這是我最後做的。天之間的差異當前和即將到來的日期在iOS中
NSDateFormatter *tempFormatter = [[NSDateFormatter alloc]init];
[tempFormatter setDateFormat:@"dd-MM-yyy"];
NSDate *currentDate = [NSDate date];
NSDate *fromDate = [NSString stringWithFormat:@"%@",[tempFormatter stringFromDate:currentDate]];
NSLog(@"currentDate %@", fromDate);
NSDate *toDate = [NSString stringWithFormat:@"%@",[tempFormatter stringFromDate:datePicker.date]];
NSLog(@"toDate %@", toDate);
NSTimeInterval interval = [toDate timeIntervalSinceDate:fromDate];
double leftDays = interval/86400;
NSLog(@"Total interval Between::%g",leftDays);
告訴我我做錯了什麼。它是NSDate轉換,我沒有正確地做? 謝謝。
是的,現在,謝謝你的發佈。這是一個很大的緩解。 – iOmi