我有一个应用程序,可以从web服务中提取26条记录并将其放入核心数据中。我一次取回了全部26张唱片。然后,我取一个名为"hor_LV"的字段,并在其上运行TimeComparator类方法,它从该字段中获取打开时间和关闭时间,并将其与现在和瞧进行比较。
截至目前,所有26个lcoations都应根据其hor_LV开放。但有3家正在关闭。我找出了被比较的日期,这就是我得到的。。。这是我的TimeComparator类方法:
+(BOOL)dealWithTimeStrings2:(NSString*)timeString{
//1. Receive Time String in format date - openTime - closeTime
NSString *s = timeString;
NSString *stripped = [s stringByReplacingOccurrencesOfString:@" " withString:@""];
NSArray *timeStringsArray2 = [stripped componentsSeparatedByString:@"-"];
NSLog(@"timeStringsArray2 %@", timeStringsArray2);
//3. Create NSDateFormatter
NSDateFormatter *dateFormatter = [NSDateFormatter new];
[dateFormatter setDateFormat:@"hh:mma"];
[dateFormatter setDefaultDate: [NSDate new]];
[dateFormatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"MST"]];
//3.5 SET LOCALE
NSLocale *enUSPOSIXLocale = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"] autorelease];
assert(enUSPOSIXLocale != nil);
[dateFormatter setLocale:enUSPOSIXLocale];
//4. Get strings from Array
NSString *openDateString = (NSString*)[timeStringsArray2 objectAtIndex:0];
NSString *closeDateString = (NSString*)[timeStringsArray2 objectAtIndex:1];
NSLog(@"someDateString %@,%@", openDateString,closeDateString);
NSDate *openDate = [dateFormatter dateFromString: openDateString];
NSDate *closeDate = [dateFormatter dateFromString: closeDateString];
NSLog(@"DEALWITHTIMESTRINGS = open, now, close %@,%@,%@", openDate,[NSDate date], closeDate);
BOOL status;
//8. Send dates to timeCompare method & return some value
if ([self timeCompare:openDate until:closeDate]) {
NSLog(@"TIMECOMPARATOR = timeCompare>OPEN");
status = YES;
} else {
NSLog(@"TIMECOMPARATOR = timeCompare>CLOSED");
status = NO;
}
return status;
}
这是一个正确记录和两个错误记录的日志:
-timeStringsArray2 (
"7:30AM",
"12:00PM"
)
-someDateString 7:30AM,12:00PM
-DEALWITHTIMESTRINGS = open, now, close 2013-08-22 13:30:01 +0000,2013-08-22 23:53:01 +0000,2013-08-22 18:00:01 +0000
-TIMECOMPARE = open:2013-08-22 13:30:01 +0000 now:2013-08-22 23:53:01 +0000 close:2013-08-22 18:00:01 +0000
-TIMECOMPARATOR = timeCompare>CLOSED
-timeStringsArray2 (
"7:30AM",
"9:00PM"
)
-someDateString 7:30AM,9:00PM
-DEALWITHTIMESTRINGS = open, now, close 2013-08-22 13:30:01 +0000,2013-08-22 23:53:01 +0000,2013-08-23 03:00:01 +0000
-TIMECOMPARE = open:2013-08-22 13:30:01 +0000 now:2013-08-22 23:53:01 +0000 close:2013-08-23 03:00:01 +0000
-TIMECOMPARATOR = timeCompare>OPEN
第二个实例是打开的,因为打开和现在是在8-22天,而关闭时间是在8-23。
第一个实例由于打开而关闭,现在是8-22,关闭时间也是如此。
我检查了在线当前MST时间和下午5:53,所以看起来很好,是+6=11:53PM
我知道是什么原因造成的:它需要开放时间730am+6hrs=开放时间13:30:00。同样,现在下午6:01变成了晚上11:53。不同之处在于,关闭时间为晚上9点+6小时=第二天凌晨3点,但关闭时间为中午12点,这是有效的,但关闭日期为当天下午12点+6时=下午6点。
那么我该如何解释或更正呢?
在构造一个"调整后"的日期字符串时,您似乎做了额外的工作。具体来说,您从一个字符串开始,从当前时间提取一些组件,添加一些组件(其中一个组件,即当天,可能会导致您的问题),然后解析日期。
也许这更直接:
NSDateFormatter *dateFormatter = [NSDateFormatter new];
[dateFormatter setDateFormat: @"h:mma"];
[dateFormatter setDefaultDate: [NSDate new]];
[dateFormatter setTimeZone: [NSTimeZone timeZoneWithAbbreviation: @"MST"]];
// Notice use of setDefaultDate: and the setDateFormat: argument
// Now parse your two date strings (one shown) in your original format
NSString *timeOne = @"7:00AM";
NSDate *dateOne = [dateFormatter dateFromString: timeOne];
// Do the comparison; for debug, print stuff.
NSLog (@"n Time: %@n Date: %@", timeOne, date);
setDefaultDate:
添加了所有缺失的东西,因此您可以获得年、月、日和秒。也许秒需要归零,或者,因为你只是在比较,也许它们可以留在中
如果您怀疑您的时间已经结束到第二天,请在每次解析之前使用以下选项之一重置默认日期:
NSDate *now = [NSDate new];
NSDate *nxt = [now dateByAddingTimeInterval: (24 * 60 * 60)];