Answers:
我相信这是您正在寻找的NSDate的选择器:
- (NSTimeInterval)timeIntervalSince1970
甲Unix时间戳是从1970年开始它的由类型表示00:00:00 UTC 1月1日的秒数time_t的,它通常是一个带符号的32位整数类型(长或INT)。
iOS 为NSDate对象提供了-(NSTimeInterval)timeIntervalSince1970,该对象返回自1970年1月1日格林尼治标准时间00:00:00起的秒数。
由于它们都具有相同的引用(1970年1月1日午夜UTC)并且都以秒为单位,因此转换很容易,因此可以将NSTimeInterval转换为time_t,根据需要舍入或截断:
time_t unixTime = (time_t) [[NSDate date] timeIntervalSince1970];
int unixTime = floor([piece.piece_last_view timeIntervalSince1970])
其中piece.piece.last_view是NSDate
- (void)GetCurrentTimeStamp
{
NSDateFormatter *objDateformat = [[NSDateFormatter alloc] init];
[objDateformat setDateFormat:@"yyyy-MM-dd"];
NSString *strTime = [objDateformat stringFromDate:[NSDate date]];
NSString *strUTCTime = [self GetUTCDateTimeFromLocalTime:strTime];//You can pass your date but be carefull about your date format of NSDateFormatter.
NSDate *objUTCDate = [objDateformat dateFromString:strUTCTime];
long long milliseconds = (long long)([objUTCDate timeIntervalSince1970] * 1000.0);
NSString *strTimeStamp = [Nsstring stringwithformat:@"%lld",milliseconds];
NSLog(@"The Timestamp is = %@",strTimestamp);
}
- (NSString *) GetUTCDateTimeFromLocalTime:(NSString *)IN_strLocalTime
{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSDate *objDate = [dateFormatter dateFromString:IN_strLocalTime];
[dateFormatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"UTC"]];
NSString *strDateTime = [dateFormatter stringFromDate:objDate];
return strDateTime;
}
注意:-时间戳记必须位于UTC区域,因此我将本地时间转换为UTC时间。
为Swift 3更新
// current date and time
let someDate = Date()
// time interval since 1970
let myTimeStamp = someDate.timeIntervalSince1970
笔记
timeIntervalSince1970
返回TimeInterval
,这是的类型别名Double
。
如果您想采用其他方式,则可以执行以下操作:
let myDate = Date(timeIntervalSince1970: myTimeStamp)
如果要将这些时间存储在数据库中或通过服务器发送...最好是使用Unix时间戳。这是一个小片段:
+ (NSTimeInterval)getUTCFormateDate{
NSDateComponents *comps = [[NSCalendar currentCalendar]
components:NSDayCalendarUnit | NSYearCalendarUnit | NSMonthCalendarUnit
fromDate:[NSDate date]];
[comps setHour:0];
[comps setMinute:0];
[comps setSecond:[[NSTimeZone systemTimeZone] secondsFromGMT]];
return [[[NSCalendar currentCalendar] dateFromComponents:comps] timeIntervalSince1970];
}
[[NSTimeZone systemTimeZone] secondsFromGMT]]
?请少解释。
按照@kexik的建议,使用UNIX时间函数如下:
time_t result = time(NULL);
NSLog([NSString stringWithFormat:@"The current Unix epoch time is %d",(int)result]);
根据我的经验-不要使用timeIntervalSince1970,它会提供新的时间戳-您落后GMT的秒数。
[[NSDate date] timeIntervalSince1970]曾经有一个错误,它曾经根据手机的时区添加/减去时间,但现在似乎可以解决了。
[NSString stringWithFormat: @"first unixtime is %ld",message,(long)[[NSDate date] timeIntervalSince1970]];
[NSString stringWithFormat: @"second unixtime is %ld",message,[[NSDate date] timeIntervalSince1970]];
[NSString stringWithFormat: @"third unixtime is %.0f",message,[[NSDate date] timeIntervalSince1970]];
首先unixtime 1532278070
第二个unixtime 1532278070.461380
第三次unixtime 1532278070