gpt4 book ai didi

iphone - PresentModalViewController 在 ios 5 中不工作

转载 作者:行者123 更新时间:2023-11-29 04:47:50 24 4
gpt4 key购买 nike

这里是我的代码:

.h

IBOutlet SecController *SecContr;

.m

[self presentModalViewController:SecContr animated:YES completion:NULL];

显示了 View Controller ,但未显示其 View 。我怎样才能解决这个问题?顺便说一句,这是我在手机上输入的。 iboutlet 也肯定已连接。

最佳答案

您为什么要创建 IBOutlet?您可以使用此代码:

(IBAction)presentNextView:(id)sender
{
SecController *secCont = [[SecController alloc]init];
secCont.ModalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:secCont animated:YES];
[secCont release];
}

然后将其连接到按钮上,就可以开始了!

关于iphone - PresentModalViewController 在 ios 5 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9355296/

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