how do you write a title or add a barbuttonitem in the navigation bar with a split view controller-based project?
i tried self.navigationItem.title = @"allo"; in viewDidLoad, but only the popover button is shown in the nav bar.
Am i missing something?
Thanks
Look in the detail view controller for this method.
You can add a UIBarButtonItem to the items array that the above method provides. Also take a look at this link Fixing the UISplitViewController Template
It will show you how to further customize the stock UISplitViewController template.