Cocoa Touch - 倒计时器
如何创建一个 15 秒倒数计时器..我见过 NSTimer,但想知道它们是否是一种更简单的方法。
谢谢!
How would one go about creating a 15 second countdown timer..I've seen NSTimer but was wondering if their was an easier way.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
并不真地。您可以使用 PerformSelector:withObject:afterDelay 进行线程阻塞,但这会将您的应用程序冻结在适当的位置,除非您创建一个新线程,这比仅使用 NSTimer 更难。
欢迎来到嵌入式开发。
Not really. You could do thread blocking with performSelector:withObject:afterDelay, but that will freeze your app in place unless you make a new thread, which is harder than just using NSTimer.
Welcome to embedded development.