将 Timerinterval 设置得很快,然后逐渐减慢

发布于 2024-10-01 08:26:37 字数 380 浏览 2 评论 0原文

我有以下代码:

xx=0.50;
[NSTimer scheduledTimerWithTimeInterval:xx target:self selector:@selector(ontimer:) userInfo:nil repeats:YES];

-(void)ontimer
{
    xx=xx+0.05;
    NSTimeInterval dt = [timer timeInterval];
    // do something
}

我想调用 ontimer 0.50 然后 0.55 然后 0.60 &很快。这意味着先快然后逐渐慢。

问题是每次 Time ontimer 都会被调用 0.50 秒。

提前致谢。

i have the following code:

xx=0.50;
[NSTimer scheduledTimerWithTimeInterval:xx target:self selector:@selector(ontimer:) userInfo:nil repeats:YES];

-(void)ontimer
{
    xx=xx+0.05;
    NSTimeInterval dt = [timer timeInterval];
    // do something
}

I want to call ontimer for 0.50 then 0.55 then 0.60 & soon. that means First Fast then gradually slow down.

The Problem is each Time ontimer will be called for 0.50 seconds.

Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彼岸花ソ最美的依靠 2024-10-08 08:26:37

据我所知,当计时器启动时,您无法调整 timeInterval,因此您必须每次都更改 fireDate 。像这样:

- (void)someTimerMethod:(NSTimer *)aTimer {
    static NSTimeInterval pause = 0.5;
    pause += 0.05;
    [aTimer setFireDate:[[[NSDate alloc] initWithTimeIntervalSinceNow:pause] autorelease]];
}

[NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(someTimerMethod:) userInfo:nil repeats:YES];

afaik you can't adjust the timeInterval when a timer has been started, so you have to change the fireDate each time. Like this:

- (void)someTimerMethod:(NSTimer *)aTimer {
    static NSTimeInterval pause = 0.5;
    pause += 0.05;
    [aTimer setFireDate:[[[NSDate alloc] initWithTimeIntervalSinceNow:pause] autorelease]];
}

[NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(someTimerMethod:) userInfo:nil repeats:YES];
故人爱我别走 2024-10-08 08:26:37

您是否尝试过将时间变量设置为静态?

Have you tried setting your time variable to static?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文