I've got missing navigationItem with popover in my right-hand view controller inside UISplitViewController. Simply the button do not appears when I'm rotating iPad to portrait orientation. The code is just fine, I have used the same one (not absolutely of course) many times, but right now i have got this weird bug.

- (void)splitViewController:(UISplitViewController *)svc 
     willHideViewController:(UIViewController *)aViewController 
          withBarButtonItem:(UIBarButtonItem *)barButtonItem 
       forPopoverController:(UIPopoverController *)pc
{
    barButtonItem.title = aViewController.title;
    self.navigationItem.rightBarButtonItem = barButtonItem;
/*
this method gets called, class is set to be delegate of split view,
barButtonItem && self.navigationItem are not nils.
*/
}

- (void)splitViewController:(UISplitViewController *)svc 
     willShowViewController:(UIViewController *)aViewController 
  invalidatingBarButtonItem:(UIBarButtonItem *)button
{
    self.navigationItem.rightBarButtonItem = nil;
}

All of this stuff gets created using the code like this...

UISplitViewController *svc = [[UISplitViewController alloc] init];
UINavigationController *rightNav = [[UINavigationController alloc] init];
DetailViewController *dvc = [[DetailViewController alloc] initWithSomeArgs:args];
[rightNav pushViewController:dvc animated:NO];
svc.delegate = dvc;
svc.viewControllers = [NSArray arrayWithObjects:tabBarController, rightNav, nil]; 
// tabBar is good, not nil and working well on the iPhone
[self.window addSubview:svc.view];
[dvc release]; [rightNav release];

I have no idea why that doesn't work, and I need to figure it out ASAP. Help me please.

link|improve this question
What happens when you [self setPopoverController:pc]; in the 1st method (and [self setPopoverController:nil]; in the 2nd)? – piobyz Jan 26 '11 at 9:47
There is no property popoverController in the DetailViewController – Woyo Jan 30 '11 at 2:19
feedback

1 Answer

It looks like you have missed the referencing outlet between your DetailViewController and the UISplitViewController.

link|improve this answer
But both delegate methods gets called successfully each time. – Woyo Jan 30 '11 at 2:21
feedback

Your Answer

 
or
required, but never shown

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