Is there is any way to hide the master view in a splitviewcontroller programmatically. In my application the first screen will be of a splitviewcontroller, i don't need any split view for the next screens. How i can achieve this
|
|
Matt Gemmell created an excellent custom splitViewController called "MGSplitViewController". It is very easily implemented, heavily commented, and contains a lot of excellent features not found with a normal splitViewController (hide master view on landscape view, change placement of the split in landscape view, allow user to change size of split fluidly during runtime, etc). Info and demo: http://mattgemmell.com/2010/08/03/mgsplitviewcontroller-updated/ Straight to the source: https://github.com/mattgemmell/MGSplitViewController/ |
|||
|
|
|
in SDK 5.0 they added new method for UISplitViewControllerDelegate that would do this easily for you. Just implement it like next and you would not see the master view:
The only place when you can see it is rotation - the part of master view is visible during animation. I've fixed that in simple way, just loaded empty and black view in master. PS: not sure whether this is actual for i0707. But hope this could be useful for other people that now have the same issues. |
|||||||||||||||||||
|
|
Try this:
Works on 4.2 for me! Here is another awesome trick that works. video link is here. |
|||||||||||||
|
|
The code above didnt work for me, however, when I tried
it did. So....this works for me.. (this code should be in your detailviewcontroller)
|
||||
|
|
|
The BarButtonItem provided by the SplitViewController is the key to programmatically hiding the Master View Controller. This code is DANGEROUS! but elegant :) import the objective c message library
Next, get a handle to the UIBarButtonItem provided by the SplitViewController
Then when the event is fired which should trigger the auto-dismissal of the master view controller i.e.
You can do this
|
|||
|
|
presentmodalviewcontroller |
|||||
|
|
While it will not have nice transitions (sorry), you could do this by setting the root view to the detail view controller's view, and then swap views with the UISplitView and move the detail view to the UISplitView. (Actually you might be able to animate the view swap (push/flip/etc.) but it is a bad idea to change anything during view change animations, and moving the detail view to inside the UISplitView might qualify.) |
|||
|
|
|
Don't know if this is what your are looking for. For example, to hide master view in landscape mode when a button is clicked you can do the following (in the selector method)
|
||||
|
This works: Attach the "hide" method to your button, for example:
In this code, the "self.mainView" is the view controller in the navigation controller in the second view of the splitview - just as a reference. The hide method looks like so.
This is the starting point, obviously more logic needs to be done to take care of rotation, showing it again, etc... I hope this helps. Tested with iOS5 and Xcode 4.3 |
|||
|
|
