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 应用程序当前正在使用一个,UINavigationController 但我需要在导航栏上方添加一个自定义标题。
UINavigationController
它应该类似于以下内容:Calcio app
如何开发?
您需要将 UINavigationController 的视图放在另一个 UIView 中。
默认情况下,您的 rootViewController 的视图被添加到应用程序委托的窗口中。
在应用程序委托级别,创建另一个 UIView 或 UIViewController 来管理 UINavigationController 的视图,以及显示您希望在 UINavigationBar 上方显示的任何其他视图。