将 xib 与故事板一起重用(将 UIView 添加到 UINavigationcontroller)

Reused xib with storyboard (add UIView to UINavigationcontroller)

我有一个 xib 包含一些控制器。如何以编程方式将 UIView 添加到 UINavigationcontroller

你能帮忙吗

谢谢

您只需将 UIView 拖放到您的 IB 中并将其导出并设置

self.navigationItem.titleView = youroutletview; 

现在您可以根据需要自定义视图。