Set the title of Navigation Bar created in Interface Builder

前端 未结 8 1746
挽巷
挽巷 2020-12-24 05:18

I have a modal view controller whose view comes from a XIB. I want it to have the same look and feel as the rest of my navigation based app, but it\'s not a view that\'s pu

8条回答
  •  温柔的废话
    2020-12-24 05:41

    Also found this easier way if you've already defined a UINavigationBar in your IB. Assuming self.navigationBar is your IBOutlet:

    self.navigationBar.topItem.title = title;
    

提交回复
热议问题