gpt4 book ai didi

swift - 在 Swift 中调用另一个 View

转载 作者:搜寻专家 更新时间:2023-11-01 05:49:17 27 4
gpt4 key购买 nike

我正在尝试以编程方式调用 Swift 中的 View , 但我没有成功。

我为 Objective-C 找到了这个:

EnterNameController *newEnterNameController = [[EnterNameController alloc] initWithNibName:@"EnterName" bundle:[NSBundle mainBundle]];
[[self navigationController] pushViewController:newEnterNameController animated:YES];

我如何在 Swift 中做到这一点?

最佳答案

Swift 中有完全相似的方法:

let newEnterNameController = EnterNameController(nibName: "nibName", bundle: nil)
self.navigationController.pushViewController(newEnterNameController, animated: true)

关于swift - 在 Swift 中调用另一个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24081570/

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