gpt4 book ai didi

ios - 如何通过插入 NavigationStack 将值传递给另一个 ViewController?

转载 作者:搜寻专家 更新时间:2023-11-01 06:22:23 26 4
gpt4 key购买 nike

这是我的代码。

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == 0{
self.navigationController?.pushViewController(self.storyboard?.instantiateViewControllerWithIdentifier("History") as! History, animated: true)
TV.deselectRowAtIndexPath(indexPath, animated: false)
}
}

我推送到另一个 ViewController(名为 History),我想将我在这个 ViewController 中的值传递给 History ViewController。

我知道我们可以通过使用 segue 和 segue 的 destinationViewController 和 sourceViewController 来传递值。

但是在这种情况下没有segue。

所以,我不知道如何将 var 的值分配给 History 的 var。

谁能帮帮我?

最佳答案

let history = self.storyboard?.instantiateViewControllerWithIdentifier("History") as! History

//这里你可以访问历史变量

history.yourVar=Assign Value

self.navigationController?.pushViewController(history, animated: true)

TV.deselectRowAtIndexPath(indexPath, animated: false)

关于ios - 如何通过插入 NavigationStack 将值传递给另一个 ViewController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31690757/

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