0
所以在我的應用程序我想減去兩個日期。第一個日期是設置日期,第二個日期是當前日期。所以我試過這個代碼:NSDate減去麻煩
NSString *setDateString = [NSString stringWithFormat:@"12:30"];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSDate *setDate = [dateFormatter dateFromString:setDateString];
NSTimeInterval interval = [[NSDate date] timeIntervalSinceDate:setDate];
但它計數從1970年的時間間隔。但我需要從當前的日子。誰能幫忙?