I have created a new split view based project in my XCode 4.2

Then in DetailViewController.m file i have add this method

- (BOOL)splitViewController: (UISplitViewController*)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation 
{
  //This method is only available in iOS5  

   return NO;
}

Now by doing this i can able to show both left & right part of my splitview Controller at a time.

Now i have added a UIBarButtonItem in my DetailViewController Navigation bar and i want by using which i can hide & show my Master View both in Portrairt and Landscape Mode.

- (IBAction)hideUnhide:(id)sender 
{

//How can hide & unhide

}

How can i do this?

link|improve this question

43% accept rate
feedback

3 Answers

'setNeedsLayout' makes UISplitViewController to ask for "shouldHideViewController"

- (IBAction)hideUnhide:(id)sender  {
    UISplitViewController* spv = ...;

    self.hideMaster= !self.hideMaster;
    [ spv.view setNeedsLayout ]
}
link|improve this answer
I have been looking all over to find a way to get the split view to ask this. Don't know why I didn't think of it. Thanks! – sasquatch Mar 28 at 20:58
2  
It seems that the way SplitViewController (SVC) uses shouldHideViewController on delegate has changed in 5.1. Now SVC would invoike shouldHideViewController with all possible orientations ONCE when you set delegate (and it will not do it ever again). So if you want to "inform" that shouldHideViewController "change its mind", its not enough to use setNeedsLayout on SVC.view. You have to change delegate value on SVC. NOTE: its not enough to 're-assign' delegate to self. It seems that SVC checking if delegate is actually different from currently assigned. – Andrei Tchijov Mar 29 at 21:15
I was changing the delegate, but that wasn't enough the get the view to hide or show the master. In my app I have one view that always hides the master, but when popping to this view the master still showed, even though it was the delegate. Once I rotated, it worked as planned. But the setNeedsLayout in the viewWillAppear has fixed that. – sasquatch Apr 2 at 20:28
feedback

In iOS 5.1 you have to do it this way:

Inside DetailViewController.m

- (IBAction)hideUnhide:(id)sender  {
    UISplitViewController* spv = ...;

    self.hideMaster= !self.hideMaster;

    [spv.view setNeedsLayout];
    spv.delegate = nil;
    spv.delegate = self;
}

- (BOOL)splitViewController:(UISplitViewController*)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation {
    return self.hideMaster;
}
link|improve this answer
feedback

Well, the easy part of your question is to use a bool, say a property hideMaster, and then

- (IBAction)hideUnhide:(id)sender 
{

   self.hideMaster= !self.hideMaster;

}

and then...

- (BOOL)splitViewController: (UISplitViewController*)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation 
{
  //This method is only available in iOS5  

   return self.hideMaster;
}

That works fine, but the shouldHideViewController is only called during a redraw of the splitVC, such as during a rotation, so the master only hides/unhides then.

link|improve this answer
Is that working, i have tried it but it is not working... – raaz Nov 11 '11 at 19:13
I created a test project (using Xcode's "master Detail" template"), then added those two routines to DetailVC.m, added the property hideMaster, and added a UIBarButton to the detail bar, and linked to hideUnhide. Runs in simulator with Master appearing/disappearing with button. Does NOT hide/unhide the master immediately, but upon the next rotation, so it's not a complete solution. – mackworth Nov 11 '11 at 20:18
feedback

Your Answer

 
or
required, but never shown

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