gpt4 book ai didi

ios - 多次将同一个 TableViewController 插入导航堆栈

转载 作者:行者123 更新时间:2023-11-28 06:32:46 27 4
gpt4 key购买 nike

对于我的应用程序,我需要多次推送同一个 TableViewController。当用户点击 didSelect 时,我需要在导航堆栈中推送相同的 Controller 。

我的应用程序是文件管理器应用程序,它连接到 ftp 服务器并向用户显示里面的内容。但是文件夹中可能有包含更多文件夹(无限)的文件夹。

为此,我无法在 Storyboard 中创建大量 TableViewController,当我尝试使用以下方法将同一个 Controller 插入导航堆栈时:

navigationController?.pushViewController(self, animated: true)

我收到错误消息说我无法在导航堆栈中推送相同的 Controller 。所以我创建了我的 Controller 的新实例并尝试像这样推送:

让 newMyTableVC = MyTableVC()
navigationController?.pushViewController(newMyTableVC, animated: true)

但是有了这个我也得到错误说:

'unable to dequeue a cell with identifier FolderCell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'

所以我从这个错误中了解到我的第一个 TableViewController 使用我的单元格标识符并且它在内存中。当我尝试传递具有相同单元格标识符的 TableViewController 的新实例时,它崩溃了,因为单元格已经存在且具有相同的标识符。(我可能错了)。

If i am on right track doing this with approach at the above {
How do i reuse cells with dynamic identifier and provide data to them.
} else {
How do i accomplish what i want?
}

感谢您的宝贵时间。

最佳答案

当您像这样创建一个新实例时:

let newMyTableVC = MyTableVC()

它完全独立于 Storyboard。重要的是,它因此对 Storyboard中定义的原型(prototype)单元一无所知。因此,错误的相关部分是“...或在 Storyboard 中连接原型(prototype)单元”。

为避免此问题,请在 Storyboard中为您的 TableView Controller 设置一个标识符,然后使用:

let newMyTableVC = self.storyboard!.instantiateViewControllerWithIdentifier("identifier") as! MyTableVC

关于ios - 多次将同一个 TableViewController 插入导航堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39856292/

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