在 iPhone xcode 中显示弹出窗口几秒钟
我有一个应用程序,其中弹出窗口显示请等待,除非进程完成。
但有时我获得了相当好的速度,应用程序只是轻弹弹出窗口,它看起来不太好。所以我想显示弹出窗口几秒钟,比如 3 秒钟。我不知道该怎么做。
非常感谢任何帮助。
谢谢, 安克斯
I have an application where popup window comes showing please wait until and unless process gets completed.
But sometimes i get pretty good speed and application just flick that pop-up window, it doesn't look good. So I want to show that pop up window for few seconds like say 3 seconds. I'm not sure how to do it.
Any help is greatly appreciated.
Thanks,
Anks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
弹出窗口可以是您在屏幕上弹出的简单视图,也可以添加为子视图或警报视图。您可以通过以下方式隐藏它:
这是在弹出窗口仍然打开的情况下的情况。
The popup can be simple view that you pop on screen or add as subview or an alertView. You can hide it with:
That's ofc in condition that the popup is still open.
使用计时器并在计时器超过计数 3 时隐藏窗口/...使用 NSTimer
use a timer and hide window if timer exceed beyond count 3/...use NSTimer
使用 NSTimer 就可以了
use NSTimer for this and you will be done
尝试
[NSThread sleepForTimeInterval:3.0];
Try
[NSThread sleepForTimeInterval:3.0];