NSTimer,其中代码每隔(以秒为单位的某个时间值)重复 1 分钟
我已经阅读了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这正是 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