iPhone - NSTimer 并且仅在函数上次运行后至少 n 秒调用函数
只是一个简单的问题。 我有一个以 5 秒为周期多次调用的函数。有没有办法合并一个 NSTimer 以便在函数调用之间有一个暂停(即在计时器达到一定限制之前无法调用该函数)? 任何和所有的建议都表示赞赏!
亚历克斯
just a quick question.
I have a function called multiple times with a 5 second period. Is there way to incorporate an NSTimer so that there is a pause between the function calls (ie so there is no way the function can be called before the timer has reached a certain limit)?
Any and all suggestions are appreciated!
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不希望某个方法在调用后的一段时间内不被调用,可以这样做,
这将在该方法成功运行后阻止所有方法调用 5 秒。
If you do not want a certain method to be invoked for a certain time period after it has been invoked, you can do this,
This will block all method calls for 5 seconds after the method has been run successfully.