gpt4 book ai didi

iphone - 如何呈现第二个 ViewController 并关闭第一个

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

在父 ViewController 中使用以下代码,我想在第一个 View 之上呈现第二个 View ,然后关闭第一个 View :

// Animates the next questionViewController using the first questionViewController
[previousView presentViewController:nextQuestionViewController animated:YES completion:nil];

// Dismiss the first questionViewController
[previousView dismissViewControllerAnimated:NO completion:nil];

运行时,会显示第二个 View ,但第一个 View 不会消失。

最佳答案

您需要首先关闭“previousView”,然后呈现“nextQuestionViewController”:

// Dismiss the first questionViewController
[previousView dismissViewControllerAnimated:NO completion:nil];

// Animates the next questionViewController using the first questionViewController
[previousView presentViewController:nextQuestionViewController animated:YES completion:nil];

关于iphone - 如何呈现第二个 ViewController 并关闭第一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9601754/

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