iOS-获取时间戳

 时间戳(timestamp)通常是一个数字序列,唯一地标识某一刻的时间。

时间戳是指格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数。

-(NSString *) timeStampWithOffsetTime:(NSInteger) offsetTime {
    NSDate* date = [NSDate dateWithTimeIntervalSinceNow:offsetTime];//获取当前时间 offsetTime 秒后的时间
    NSTimeInterval time =[date timeIntervalSince1970];//默认单位是秒,*1000单位为毫秒
    NSString *timeStampString = [NSString stringWithFormat:@"%.0f", time];
    return timeStampString;
}

 打印如下:

时间戳=1539924585

 时间戳在线转换工具

你可能感兴趣的:(iOS-其他)