在后台运行时间间隔计算
我有一个 NSTimeInterval ,基本上
NSTimeInterval interval = [date1 timeIntervalSinceDate: [NSDate date]];
我希望当我在视图 X 中时这个计算始终在后台运行,这样我就可以在 UILabel 中显示倒计时计时器..我该怎么做?就像在groupon iphone应用程序中一样,但它不显示秒的详细信息
I have a NSTimeInterval which is basically
NSTimeInterval interval = [date1 timeIntervalSinceDate: [NSDate date]];
I want this computation to be always running in the background when I am in a view X, so I can display a timer counting down in a UILabel.. how do I do this? It's like in the groupon iphone app, but it doesn't show it in details of seconds
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 NSTimer< /a> 获取按设定时间间隔调用的方法(但这全部在主线程上执行,而不是在后台线程上执行):
You could use an NSTimer to get a method called at a set time interval (however this is all performed on the main thread, not on a background thread):