有没有办法暂时禁用对我的 iPhone 应用程序的触摸?

发布于 2024-12-07 23:58:52 字数 67 浏览 2 评论 0原文

有没有办法暂时禁用对我的 iPhone 应用程序的触摸?

我应该用什么方法来做呢?

总氮

Is there a way to disable touches to my iphone app for a while?

What is the way i should do it?

Tnx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

栖迟 2024-12-14 23:58:52

试试这个:

[[UIApplication sharedInstance] beginIgnoringInteractionEvents];

当你想再次启用它们时,请调用以下命令:

[[UIApplication sharedInstance] endIgnoringInteractionEvents];

Try this:

[[UIApplication sharedInstance] beginIgnoringInteractionEvents];

and when you want to enable them again, call this:

[[UIApplication sharedInstance] endIgnoringInteractionEvents];
标点 2024-12-14 23:58:52

我不确定你为什么不想这样做,因为它对用户不友好。

当您的应用程序正在加载某些内容时,请在窗口上方创建一个视图。将其设为灰色,并将 alpha 设置为 0.4,这样您的屏幕“看起来”已禁用。
您可以添加一个微调器作为额外的“加载”指示。

当您想在启动时执行任务时。只需添加一个启动屏幕即可。

当您的任务完成后,删除不需要的屏幕。

I'm not sure why you wan't to do this, because it is not user friendly.

When your app is loading something, make a view which you lay over your window. Make it gray and give it an alpha of .4 this way your screen 'looks' disabled.
You can add a spinner as extra 'loading' indication.

When you want to preform tasks at startup. Just add a startup screen.

When your task(s) is/are finished, remove the screens you do not need.

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