gpt4 book ai didi

swift - 将后台数据放入 UITableViewController 中

转载 作者:行者123 更新时间:2023-11-30 13:47:13 26 4
gpt4 key购买 nike

我有一个带有 3 个动态单元格的 UITableView。

细胞A细胞B单元格C

单击单元格时,将打开一个带有 Segue 的新 View 。我将文本“Cell A”(...) 提交到另一个 View 。但我需要其他数据才能继续(例如唯一的 ID)。如何在用户看不到的情况下传输此内容?

最佳答案

你可以这样做:

1) 在目标 View Controller 中创建变量 yourUniqueId。

2)在 Root View Controller 中添加以下方法。

    override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {

if segue.identifier == "YourSegue"
{
let tempController = segue.destinationViewController as! DestinationViewController
tempController.yourUniqueId = "UNIQUEID"

}
}

关于swift - 将后台数据放入 UITableViewController 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34762590/

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