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.
我的 ios 应用程序中有我的自定义警报。我在视图控制器上添加了它,它工作正常。
但是现在在一种情况下,我的视图隐藏在一个视图之下,所以现在我需要在所有视图或窗口上添加父视图手段。
什么是最好的方法
您是否尝试过:[parentview bringSubviewToFront:alertview]
直接添加到应用程序窗口
[self.view.window addSubview: myView];
希望这对你有用。