gpt4 book ai didi

objective-c - 如何在 iOS 开发中切换新的 View Controller ?

转载 作者:可可西里 更新时间:2023-11-01 05:10:13 24 4
gpt4 key购买 nike

我正在尝试编写一个 IBAction 来为我的 iPhone 应用程序切换 View Controller :

-(IBAction)changeToView2:(id)sender 
{
if (self.view2 == nil)
{
view2 = [[UIViewController alloc] initWithNibName:@"View2Controller" bundle:[NSBundle mainBundle]];
}
self.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentedViewController: view2 animated:YES];
}

但是,我收到一个构建错误,指出没有接口(interface)声明“presentedViewController:animated:”。为什么?

将其更改为“presentViewController:animated:”会产生相同的错误。

最佳答案

方法是presentViewController:animated:completion:,不是presentedViewController:animated:

关于objective-c - 如何在 iOS 开发中切换新的 View Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10388301/

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