gpt4 book ai didi

ios - 多个 UIWindows 和触摸事件

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:42:06 25 4
gpt4 key购买 nike

我创建了第二个窗口并将其添加到默认窗口之上:

[topWindow makeKeyAndVisible];
topWindow.hidden = NO;

它可以工作,但我的顶部窗口阻止了对应用程序默认窗口的访问。我想知道如果在屏幕给定位置的顶部窗口中没有元素(例如按钮),我们是否可以访问下面默认窗口的元素。

我希望这是可以理解的。对不起我的英语不好。预先感谢您的帮助。

最佳答案

I have created a second window and add it on top

因此,我认为通常的期望是 iOS 应用程序中每个屏幕只有一个窗口。 The docs seem to imply this :

Every app has one window that displays the app’s user interface on an iOS-based device display. If an external display is connected to the device, an app can create a second window to present content on that display as well.

iOS 可能简单地假设每个屏幕只有一个窗口,因此 hit-testing process只考虑一个窗口,可能是关键窗口。由于您要将第二个窗口设为关键窗口,因此我建议您在创建第二个窗口后将第一个窗口设为关键窗口,看看是否会有所改变。如果第一个窗口接收到触摸而第二个窗口没有接收到触摸,也就不足为奇了。如果发现是这种情况,您可以子类化 UIWindow,覆盖 -hitTest:withEvent: 以在未找到命中 View 时将事件传递给其他窗口,然后使用它两个窗口的子类。

否则,如果您无法让它工作,请考虑返回到单个窗口并改用不同的 View 。您的问题有点类似于 Make this view appear in every view, inside the app , 和 my suggestion在那里创建您自己的容器 View Controller 可能会对您有所帮助。

关于ios - 多个 UIWindows 和触摸事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17583795/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com