I have an application that uses the main board to enable the navigation controller, where the main view is to present the table using the contents of the prototype cell. Each cell in the table view clicks on a new view that I created with its own set of .hm and .xib files.
The navigation bar in the form of a table has its own title, set through the story bar, which works fine. However, I had problems setting the title for each new view after entering it in the field of view.
I have the following in the viewDidLoad method for each view;
self.title = @"View Title";
Any tips?
source
share