1. 程式人生 > >iOS-獲取時間戳

iOS-獲取時間戳

 時間戳(timestamp),通常是一個字元序列,唯一地標識某一刻的時間。

時間戳是指格林威治時間1970年01月01日00時00分00秒(北京時間1970年01月01日08時00分00秒)起至現在的總秒數。

-(NSString *) getTimeStampWithOffsetTime:(NSInteger)offsetTime {
    NSDate* date = [NSDate dateWithTimeIntervalSinceNow:offsetTime];//獲取當前時間 offsetTime 秒後的時間
    NSTimeInterval time =[date timeIntervalSince1970];//預設單位是秒,*1000單位為毫秒
    NSString *timeString = [NSString stringWithFormat:@"%.0f", time];
    return timeString;
}

 列印如下:

時間戳=1539924585

 時間戳線上轉換工具