有没有办法以编程方式以纵向模式显示根视图控制器以响应用户操作?
在我的应用程序中,根视图控制器可以响应一些用户与细节控制器的交互而更新,我想在发生这种情况时将其弹出。
谢谢!
有没有办法以编程方式以纵向模式显示根视图控制器以响应用户操作?
在我的应用程序中,根视图控制器可以响应一些用户与细节控制器的交互而更新,我想在发生这种情况时将其弹出。
谢谢!
如果要弹出根视图控件,请使用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];