Is there any way to programatically show the root view controller in portrait mode responding to a user action?

in my app the root view controller can be updated responding to some user interaction with the detail controller and i'd like to pop it over when that happens.

Thanks!

link|improve this question

48% accept rate
feedback

1 Answer

If you want to pop up the root view control, then use UIPopOverController:

self.QuickSearchPopView = [[[QuickSearchPopView alloc]
    initWithNibName:@"QuickSearchPopView" 
    bundle:[NSBundle mainBundle]] autorelease];

//create a popover controller
self.popoverController = [[[UIPopoverController alloc]
    initWithContentViewController:self.QuickSearchPopView] autorelease];

//present the popover view non-modal with a
//refrence to the button pressed within the current view
[self.popoverController presentPopoverFromRect:self.view.frame
    inView:self.view
    permittedArrowDirections:UIPopoverArrowDirectionAny
    animated:YES];
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.