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

link|improve this question

When you say hide the masterview, do you mean creating a blank view on the left side of the SplitViewController, or do you mean having the DetailViewController fill 100% of the screen in landscape mode? – Tilo Mitra Apr 23 '10 at 17:11
The second option, to have the DetailViewController filling the 100% for the screen in either mode (landscape or portrait). – i0707 Apr 26 '10 at 6:48
any solution yet? I am trying to do the same and i tried presenting modally like: – Imran Raheem Jan 21 '11 at 7:06
feedback

8 Answers

up vote 1 down vote accepted

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/

link|improve this answer
feedback

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:

- (BOOL)splitViewController:(UISplitViewController*)svc 
   shouldHideViewController:(UIViewController *)vc 
              inOrientation:(UIInterfaceOrientation)orientation 
{
    return YES;
}

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.

link|improve this answer
1  
Note that the split view controller calls this for all orientations when its delegate property is changed. If you want to toggle the behavior you can force it to reload by setting it to nil and back. You still need to trigger the show/hide by calling the rotation methods. – Frank Schmitt Mar 15 at 0:03
@FrankSchmitt, can you please clarify what should be set to nil? Can you add some sample code? – Flink Apr 4 at 11:07
Doesn't work for me. I've tried it in the SVC, the NC of the master, the VC of the master and the VC of the detail view. – Chris Apr 13 at 11:58
How to enable it again? In iOS 5.1 this method is only called once at the beginning and then never again. Even not when the orientation changes. – Chris Apr 13 at 13:30
feedback

Try this:

splitVC.modalPresentationStyle = UIModalPresentationFullScreen;
[splitVC presentModalViewController:[[splitVC viewControllers] objectAtIndex:1] animated:NO];

Works on 4.2 for me!

Here is another awesome trick that works. video link is here.

link|improve this answer
1  
It will certainly hide the master view, but I cannot seem to bring it back after calling presentModalViewController. – ericgorr Mar 24 '11 at 21:40
Did you try dismissModalViewController? – Imran Raheem Mar 25 '11 at 12:17
1  
Yes, it did nothing. – ericgorr Mar 25 '11 at 15:20
Where are you getting the splitVC from? – allthewayapps May 4 '11 at 21:17
feedback

presentmodalviewcontroller

link|improve this answer
This does not work if you try to go full view. Also you would not be able to add a tab view controller this way since it too wants to be the root controller. – Artilheiro Jul 16 '10 at 0:38
Didn't work, tried it like this: splitVC.modalPresentationStyle = UIModalPresentationStyleFullScreen; [splitVC presentModalViewController:[[splitVC viewControllers] objectAtIndex:1] animated:YES] – Imran Raheem Jan 21 '11 at 7:46
feedback

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.)

link|improve this answer
feedback

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)

    UIViewController *master = [splitViewController.viewControllers objectAtIndex:0];
    UIViewController *detail = [splitViewController.viewControllers objectAtIndex:1];

    [master.view setFrame:CGRectMake(0, 0, 0, 0)];
    detail.view.frame = splitViewController.view.bounds; //or use master and detail lenght
link|improve this answer
I tried this, but it does not appear to work. – ericgorr Mar 24 '11 at 21:41
Do you see any size change. The code above did work for me. Try manually setting the detail.view.frame size to see the size update. if not I'll post some detail code tomorrow. – surajz Mar 26 '11 at 20:49
feedback

This works:

Attach the "hide" method to your button, for example:

UIBarButtonItem *hideButton = [[UIBarButtonItem alloc] initWithTitle:@"hide"
                                         style: UIBarButtonItemStylePlain
                                        target: self
                                        action: @selector(hide:)
                              ];

[self.mainView.navigationItem setLeftBarButtonItem:hideButton];

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.

-(void)hide:(id)sender
{
    UIViewController *masterController = [self.viewControllers objectAtIndex:0];

    CGRect selfFrame = self.view.frame; 
    CGFloat aWidth = masterController.view.frame.size.width;

    UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.30f];

    if(orientation == UIDeviceOrientationLandscapeLeft)
    {
        selfFrame.size.height += aWidth;
        selfFrame.origin.y -= aWidth;
    }
    else if(orientation == UIDeviceOrientationLandscapeRight)
    {
        selfFrame.size.height += aWidth;
    }

    [self.view setFrame:selfFrame];

    [UIView commitAnimations];

}

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

link|improve this answer
feedback

The code above didnt work for me, however, when I tried

CGRect selfFrame = self.splitViewController.view.frame; 

it did. So....this works for me.. (this code should be in your detailviewcontroller)

-(void)hideMaster {
    UIViewController *masterController = GetAppDelegate().masterController;

    CGRect selfFrame = self.splitViewController.view.frame; 
    CGFloat aWidth = masterController.view.frame.size.width;

    UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.30f];

    if(orientation == UIDeviceOrientationLandscapeLeft)
    {
        selfFrame.size.height += aWidth;
        selfFrame.origin.y -= aWidth;
    }
    else if(orientation == UIDeviceOrientationLandscapeRight)
    {
        selfFrame.size.height += aWidth;
    }

    [self.splitViewController.view setFrame:selfFrame];

    [UIView commitAnimations];

}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.