gpt4 book ai didi

iphone - 以编程方式在纵向 View 中显示根 Controller 弹出窗口

转载 作者:行者123 更新时间:2023-12-03 19:23:12 26 4
gpt4 key购买 nike

是否有任何方法可以以编程方式以纵向模式显示 Root View Controller 以响应用户操作?

在我的应用程序中, Root View Controller 可以响应某些用户与详细 Controller 的交互进行更新,我想在发生这种情况时将其弹出。

谢谢!

最佳答案

如果你想弹出 Root View 控件,那么使用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];

关于iphone - 以编程方式在纵向 View 中显示根 Controller 弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3165737/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com