欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

获取当前小时的后几个小时(类别)

程序员文章站 2024-02-20 20:19:47
...

获取当前小时的后几个小时(类别)

+ (NSDate *)df_currentHourWithAfterHours:(NSInteger)dHours
{
    NSTimeInterval aTimeInterval = [[NSDate date] timeIntervalSinceReferenceDate] + 3600 * dHours;
    NSDate *newDate = [NSDate dateWithTimeIntervalSinceReferenceDate:aTimeInterval];
    return newDate;
}

上一篇: js 判断一个对象是否为空

下一篇: