applicationDidBecomeActive 当前屏幕

发布于 2024-11-24 01:01:29 字数 147 浏览 3 评论 0原文

如何确定 applicationDidBecomeActive 中当前的控制器/窗口?例如,在登录屏幕(这是一个 LoginViewController)上,如果 applicationDidBecomeActive 触发,我如何知道它是来自 appDelegate 的登录屏幕?

How can I determine what controller/window is currently in the applicationDidBecomeActive? For example on the login screen (which is a LoginViewController), if the applicationDidBecomeActive fires how do I know it is the login screen from the appDelegate?

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

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

发布评论

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

评论(1

栀梦 2024-12-01 01:01:29

传递给 applicationDidBecomeActiveUIApplication 对象具有 windows 属性。它是可见窗口的 NSArray,从后到前排序。

一旦有了前台窗口,您就可以获取第一个子视图并测试其类型:

if ([[foregroundWindow.subviews objectAtIndex:0] class] == [LoginViewController.view class]) {
    ...
}

The UIApplication object passed to applicationDidBecomeActive has a windows property. It is an NSArray of visible windows, ordered back to front.

Once you have the foreground window, you can get the first subview and test its type:

if ([[foregroundWindow.subviews objectAtIndex:0] class] == [LoginViewController.view class]) {
    ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文