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.
我想在我的UIViewController. 视图还必须覆盖UINavigationBar. 我的覆盖视图覆盖了我的应用程序的视图,但它不覆盖导航栏。如何覆盖导航栏?
UIViewController
UINavigationBar
您可以通过在窗口上添加视图轻松地做到这一点
创建 AppDelegate 的引用并使用它的 window 属性来添加 subView。// 在你的 .h 文件中声明这个,然后在你的 .m 文件中导入 AppDelegate.h 文件
id _AppDelegate; _AppDelegate=(AppDelegate *)[[UIApplication sharedApplication] delegate]; [[_AppDelegate window] addSubview:yourView];