在 Objective C 中创建一个倒计时器(iPhone 开发)

发布于 2025-01-06 08:15:45 字数 286 浏览 1 评论 0原文

可能的重复:
如何使用 NSTimer

我想创建一个计时器:当用户单击时定时器启动的按钮。 (例如)两秒后,计时器停止/重置并执行操作。

我一直在研究 NSTimer,但没有找到正确的使用方法以及如何以正确的方式进行设置。

预先感谢您的帮助!

Possible Duplicate:
How do I use NSTimer

I'd like to create a timer: When a user clicks a button the timer starts. After (e.g) two seconds the timer stops/resets and an action is performed.

I've been looking at NSTimer without any luck finding the right methods to use, and how to set this up the right way.

In advance, thanks for any help!

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

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

发布评论

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

评论(1

等你爱我 2025-01-13 08:15:45
- (IBAction)buttonPressed:(id)sender
{
    [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(timerExpired) userInfo:nil repeats:NO];
}

- (void)timerExpired
{
    NSLog(@"Your two seconds are up!");
}
- (IBAction)buttonPressed:(id)sender
{
    [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(timerExpired) userInfo:nil repeats:NO];
}

- (void)timerExpired
{
    NSLog(@"Your two seconds are up!");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文