I’ve got a split-view application. When in Portrait orientation, there is a popover, it has a title “Root View Controller”, how can I change it? moreover, how to skip popover when I select a cell? thanks. Here is the screenshot:

I’ve got a split-view application. When in Portrait orientation, there is a popover, it
Share
Find the view controller that will be the master view in the UISplitViewController and set the title in the viewDidLoad method like this:
Since the master view will eventually modify the detail view you can place a method in the detail view controller to dismiss the UIPopoverController after you select a row. Below is an example.
So in DetailViewController(Detail View) implement a method like this
And then in your RootViewController(Master View) implement this code
{
}
Take note that your setup will vary so you will have to adapt this code to your project.