gpt4 book ai didi

iOS PresentModalViewController 不工作

转载 作者:行者123 更新时间:2023-11-29 04:30:46 26 4
gpt4 key购买 nike

我位于 Root View Controller 内。然后分配第二个 View Controller

         SecondViewControl *second=[[SecondViewControl alloc] init];
[self presentModalViewController:second animated:NO];

第二个 View Controller 的 View 未显示

AddSubView 方法仍然有效。 [self.view addSubView:second.view];

为什么预设ModalViewController不起作用?

最佳答案

通常,您将使用实际定义用户界面的 .xib 文件来分配 SecondViewControl。考虑使用这样的行(为了便于阅读而中断):

SecondViewControl *second = [[SecondViewControl alloc]
initWithNibName:@"SecondView"
bundle:nil];

如果没有随附的 .xib 来定义 View ,您可能会留下一个 View Controller ,该 Controller 没有设置实际支持用户交互所需的属性,因此 presentModalViewController: 可能会遇到麻烦那里。

关于iOS PresentModalViewController 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11766683/

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