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];