gpt4 book ai didi

iphone - 如何从 Controller 显示和关闭 View ?

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

我只是想显示一个“CreditsView”。因此,如果我按一个按钮显示制作人员列表,按“确定”该 View 就会消失。

我有我的基本 Controller 和我的积分 View Controller ,现在我尝试类似的操作:

- (IBAction)switchToCreditsView:(id)sender {
creditsViewController = [[CreditsViewController alloc] initWithNibName:@"CreditsViewController"];
[self.view addSubview:creditsViewController.view];
//[self presentModalViewController:creditsViewController animated:YES];

}

但是如果我按下按钮我的应用程序就会崩溃。

最佳答案

要返回,您只需调用:

- (IBAction)switchToBaseView:(id)sender {
[self dismissModalViewControllerAnimated:YES];
}

关于iphone - 如何从 Controller 显示和关闭 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1420357/

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