我怎样才能制作一个计数器?
如何制作一个从 0 到 10 的计数器并选择延迟?
How can I make a counter from 0 to 10 choosing the delay?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何制作一个从 0 到 10 的计数器并选择延迟?
How can I make a counter from 0 to 10 choosing the delay?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您需要使用
NSTimer
,请检查以下代码作为参考。
showElapsedTime
将在您提供的延迟后调用。you need to use
NSTimer
,Check the below code as reference.
showElapsedTime
will be called after delay, you provide.创建一个 NSTimer:
您的计时器可能如下所示:
在调用的方法中,增加一个计数器,并检查是否已达到计数以停止计时器:
Create an NSTimer:
Yours would probably look like this:
In the method that is invoked, increment a counter, and check to see if you've hit your count to stop the timer:
NSObject类的方法
[performSelector: withObject: afterDelay]
通常用于定时操作。The method
[performSelector: withObject: afterDelay]
of the NSObject class is normally used for timed operations.