I am trying to add a button to the Master View Controller to hide itself. I would like to have another button in a separate view to toggle showing and hiding the Master View Controller. Ive started with the Master Detail template project in Xcode.
I am being told that it is impossible to make these buttons show or hide the Master View Controller in iOS 6 as there is no API for it.
Is this even true? Why would Apple take away this functionality?
If this is true, is there anyway around it? Surely showing and hiding a view in a split controller programmatically should be fairly straight forward?
EDIT :
This is not true. The Master View Controller can be hidden from the Detail View Controller using [self.masterPopoverController dismissPopoverAnimated:YES]
.