作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试弄清楚如何将当前日期和时间转换为一个精确到秒的数字?
我看到这篇文章 What format string do I use for milliseconds in date strings on iPhone? 但我实际上是想把它变成一个数字......
编辑:对不起意味着秒
最佳答案
如果你想要 UTC
时间戳并且想要存储在 int
中而不是 32 位,这是不可能的,而不是使用 long long
它有更大的范围,可以用作整数
NSString *dateValue = @"2011-06-23T13:13:00.000";
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
NSString *formatString = @"yyyy-MM-dd'T'HH:mm:ss.SSS";
[formatter setDateFormat:formatString];
NSDate *date = [formatter dateFromString:dateValue];
long long dateInMillis = [date timeIntervalSince1970]*1000; //This will give milliseconds
long dateInSeconds = [date timeIntervalSince1970]; //This will give seconds
编辑:long
值使用中的当前日期
//This will give seconds of current date
long dateInSeconds = [[NSDate date] timeIntervalSince1970];
关于ios - 如何将当前日期的 iOS 日期格式转换为整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24832167/
我是一名优秀的程序员,十分优秀!