ProgressView 达到某个值后 UIAlert
我有点迷失在这里。我想知道在我的 ProgressView 值超过 0.8 后如何实现 UIAlertView
。
更清楚地说,我有一个在后台线程中运行的 NSTimer,它更新浮点变量,当控件返回到主线程时,我更新 ProgressView 的值。
我希望 alertView
保持在前台直到用户操作。
希望我说得足够清楚。
谢谢
I am kind of lost here. I want to know how to implement an UIAlertView
after my progressView has crossed a value of 0.8.
To be more clearer I have a NSTimer
running in a background thread which updates a float variable and when the control returns to the main thread I update the value of the progressView.
I would like the alertView
to stay in the foreground until user action.
Hope I am clear enough.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是使用 键值观察您正在观察的变量,当它超过您的阈值时 - 展示您的UIAlertView。
One way is to use Key-Value-Observing on the variable you are watching, and when it crosses your threshold - present your UIAlertView.