我从数据库中获取了NSString的日期。它是24小时的格式。当我打印从数据库中提取的时间时,它是06:26:00。现在,当我尝试使用以下代码转换它时,它给了我一些非常奇怪的东西。
NSDateFormatter *dateFormatttor = [[NSDateFormatter alloc] init];
[dateFormatttor setDateFormat:@"HH:mm:ss"];
NSDate *time = [dateFormatttor dateFromString:@"06:26:00"];
NSLog(@"%@", time); // it prints out 2000-01-01 00:26:00 +0000
我需要将当前时间与格式化时间进行比较。所以,我需要它正确转换。任何人都可以帮忙。