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.
我对 AdView 的触摸不会传播到当前 UIView 下方的 EAGLView。在 UIView 的 TouchBegan 方法上观察到触摸。
如何使这种触摸传播到 UIView 下的 EAGLView?
任何帮助和建议将不胜感激。提前致谢。
我找到了完成上述任务的方法。我们总是可以通过以下代码访问 _window 视图上的视图数量:
viewsInWindow = [[self.view superview] subviews]
它给出了数组中窗口视图的视图数量,您可以使用数组访问任何视图
myEAGLView = [viewsInWindow objectAtIndex:0] // For first and so on for next views.
然后在你想要的视图中完成你需要做的事情。
希望这会对某人有所帮助。