Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道如何在 UIApplicationDelegate 而不是 UIView 中处理事件(触摸、拖动)吗?
为了响应触摸事件,一个类必须继承自 UIResponder。因此,首先您必须让您的应用程序委托 UIResponder 的子类。但是,它不会在任何视图或视图控制器的响应者链中,因此它永远不会接收到触摸事件。
为什么您希望您的应用程序委托处理触摸。这不是应用程序委托的用途。听起来你遇到了设计问题。