问题标签 [nstimeinterval]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
102 浏览

casting - 随机位双题

我在gtm-http-request的GTMHTTPFetcher.m中看到了以下行:

  1. 为什么除法运算符的两个操作数都被强制转换为doubles?

  2. 做什么的& 0x0FFFF

  3. 这是否独立于系统的字节序

  4. 我们如何确定它0x0FFFF总是大于arc4random() & 0x0FFFF?如果系统使用二的恭维怎么办?

0 投票
3 回答
4747 浏览

objective-c - Objective-c 格式化时间到某个日期为止

我正在创建一个倒数计时器,我需要打印出直到特定日期的剩余时间(小时:分钟:秒)。我找到了如何获取现在和目标日期之间的时间间隔,但我不知道如何将时间间隔格式化为字符串。NSDateFormater 是否适用于 NSTimeInterval?

0 投票
3 回答
173 浏览

iphone - iPhone:表达式中的整数溢出

我在 NSTimerInterval 的表达式中得到整数溢出,这实际上是一个双精度数。

在 iPhone 中处理计时器间隔的最佳方法是什么?

0 投票
2 回答
1584 浏览

iphone - iPhone - NSDate 根据当前时区获取时间间隔的问题

我正在使用 NSDate 根据当前时区获取 NSTimeInterval 。但我正在获取与 UTC 相关的信息。我正在使用“dateWithTimeIntervalSinceNow”和“dateWithTimeIntervalSince1970”之类的方法如何根据我的时区获取时间间隔?

0 投票
3 回答
217 浏览

iphone - 如何存储和比较时间数据对象

这应该很简单!

我有一家店,8:30开门,17:00关门。我希望我的应用程序显示当前营业或关闭的商店。

存储我的 open_time 和 close_time 的最佳方式是什么?将它们存储为自一天开始以来的秒数,即 30600 和 63000?

这是有道理的,但是我现在如何获取当前时间,从今天开始以秒为单位,所以我可以检查 current_time 是否在 open_time 和 close_time 之间,即打开!

提前致谢!

0 投票
2 回答
255 浏览

iphone - 如何在 Objective-C 中正确格式化这个日期?

我有以下字符串:

“2011-08-31 14:12:24”

如果已经过去了多少时间,我该如何格式化它以使其显示为“2 小时前”?

我有一些类似的代码,但不完全是:

0 投票
3 回答
753 浏览

iphone - 如何将时间与当前日期和时间进行比较?

在我的应用程序中,我必须在给定时间内完成特定任务。所以首先我计算了完成任务的时间(以秒为单位),然后将该时间添加到当前这样的时间。

现在我这样比较时间

但我想知道是否还有时间。当前时间是小于还是大于当前时间我怎么知道?

0 投票
1 回答
147 浏览

objective-c - Shouldn't this give me the current date/time in seconds?

I want to calculate an oscillating offset value based on the current time in seconds so that any object can call this method and would get an offset returned that is synchronized to any other object that calls the same method.

This is my setter for the locationOffset property:

I'm calling this a 60Hz and the output looks like this:

...and it stays this way. Should everything after the decimal be zero?

I expect that I can adjust the frequency by scaling currentTime and the "wavelength" by scaling the offsett, but I just need to get my sinusoidal locationOffset to swing back and forth based on the time.

It seems like the location offset should cycle from -1 to 1 every 2pi seconds.

EDIT: Adding the method that works now as it should.

It cycles every pi seconds and has a magnitude of +/- 12.

0 投票
1 回答
349 浏览

nsstring - 来自文本输入的 NSTimeInterval

我有一个空闲时间和答案的人的问题...

我需要更改一个 NSString 值以输入到 AVAudioPlayer 开始偏移量

例如。player.currentTime = 0; 我想将“0”更改为可读值或将 NSString 更改为数值.....

0 投票
3 回答
3079 浏览

ios - 将 NSTimeInterval 格式化为 Minutes:Seconds:milliseconds

谁能告诉我如何在这段代码中显示毫秒?