在 iPhone xcode 中显示弹出窗口几秒钟

发布于 2024-11-08 04:41:07 字数 144 浏览 0 评论 0原文

我有一个应用程序,其中弹出窗口显示请等待,除非进程完成。

但有时我获得了相当好的速度,应用程序只是轻弹弹出窗口,它看起来不太好。所以我想显示弹出窗口几秒钟,比如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

瀟灑尐姊 2024-11-15 04:41:07

弹出窗口可以是您在屏幕上弹出的简单视图,也可以添加为子视图或警报视图。您可以通过以下方式隐藏它:

[self performSelector:@selector(methodToHideView) withObject:nil afterDelay:2];

这是在弹出窗口仍然打开的情况下的情况。

The popup can be simple view that you pop on screen or add as subview or an alertView. You can hide it with:

[self performSelector:@selector(methodToHideView) withObject:nil afterDelay:2];

That's ofc in condition that the popup is still open.

不念旧人 2024-11-15 04:41:07

使用计时器并在计时器超过计数 3 时隐藏窗口/...使用 NSTimer

use a timer and hide window if timer exceed beyond count 3/...use NSTimer

め可乐爱微笑 2024-11-15 04:41:07

使用 NSTimer 就可以了

use NSTimer for this and you will be done

温柔戏命师 2024-11-15 04:41:07

尝试

[NSThread sleepForTimeInterval:3.0];

Try

[NSThread sleepForTimeInterval:3.0];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文