iOS相差2倍

时间:2011-12-06 18:18:05

标签: iphone objective-c ios date epoch

这是这里的情况。我现在正处于时代。我也有几天。我想找到2之间的区别,以时代格式给出一些过去的时间。即

  

currentEpochTime - (x天)以epoch格式提供一些过去的时间。

这是我到目前为止所得到的 -

+ (double)currTimeInEpoch
{
    NSDate *todayDate = [NSDate date];
    double ti         = [todayDate timeIntervalSince1970]*1000;
    return ti;    
}

+ (NSString *)timeDiff:(double)epoch diff:(double)diffInDays
{
    double past = epoch - (diffInDays * 24 * 60 * 60 * 1000);
    return [[NSNumber numberWithDouble:past] stringValue];
}

我正在做的是正确的吗?不确定。有没有更简单的方法呢?

1 个答案:

答案 0 :(得分:2)

独自一人是危险的。拿这个。

NSDateComponents *dateComponents = [[NSDateComponents alloc] init];
dateComponents.day = -40; // Number of days to subtract
NSDate *newDate = [[NSCalendar autoupdatingCurrentCalendar] dateByAddingComponents:dateComponents toDate:[NSDate date] options:0];
NSTimeInterval newDateInEpochTime = [newDate timeIntervalSince1970] * 1000;