gpt4 book ai didi

带有子元素的 ios UITableViewController 元素

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

我希望生成一个导航列表。

我有一个 UITableViewController,我希望如果单击一个单元格,则该单元格的子单元格将显示在 UITabeViewController 中,并且应该出现一个后退按钮。

目前对于测试我做了/做了这个:

var anz = 10
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return anz
}

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if anz<10 {
navigationController?.popToRootViewControllerAnimated(true)
}
anz = 5
self.tableView.reloadData()
}

但是没有后退按钮(当然)。

所以它应该看起来像:

enter image description here

谢谢。

最佳答案

希望您想要制作可折叠/可展开的表格 View 。

您可以引用http://www.appcoda.com/expandable-table-view/

关于带有子元素的 ios UITableViewController 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36080101/

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