NSTimer,其中代码每隔(以秒为单位的某个时间值)重复 1 分钟

发布于 2024-09-11 10:32:28 字数 175 浏览 3 评论 0原文

我已经阅读了 NSTimer 上的一些文档,但还没有完全明白我在寻找什么。

我想知道如何编写一个 NSTimer ,它将每 1 秒或另一个时间值重复一次(也许将此值作为参数),并且整体重复应该重复一分钟。

另外,这个总时间(1 分钟)如何显示在屏幕上(也许在 UILabel 中)?

谢谢

I have read some docs on NSTimer and havent quite seen what I am looking for.

I would like to know how to write an NSTimer which will repeat every 1 sec or another time value(maybe have this value as parameter) and the overall repeat should repeat for one minute.

Also how is this overall time (1 minute) shown on screen , maybe in a UILabel?

Thanks

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

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

发布评论

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

评论(1

梦途 2024-09-18 10:32:28

这正是 NSTimer 所做的。不过,一分钟过去后,您需要自己使计时器无效。只需计算调用次数,当达到 60 次时,计时器就会失效。

NSTimer

NSTimer 编程指南

That's exactly what NSTimer does. You need to invalidate the timer yourself after a minute has passed though. Just keep count of the number of invocations and when you hit 60 you invalidate the timer.

NSTimer

NSTimer Programming Guide

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