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:

Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
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. |
|||
|
|
|
in the ViewController set
and to "skip" the popover when a row is selected do sometime like this
|
|||
|
|