gpt4 book ai didi

ios - 选择 TableView 中的每个单元格时呈现不同的 View

转载 作者:行者123 更新时间:2023-11-28 06:45:22 26 4
gpt4 key购买 nike

我想在表格 View 中选择每个单元格时呈现不同的 View 。

enter image description here

我发现我必须使用这个函数:

 func tableView(tableView: UITableView, didDeselectRowAtIndexPath   indexPath: NSIndexPath) {



}

我应该在函数中添加什么才能使其正常工作?

最佳答案

首先,您需要 didSelectRowAtIndexPath 并且在函数内部您可以使用 indexPath.row 来了解 witch cell 被点击,然后您需要创建并推送 View 你要

let viewControllerObj = self.storyboard?.instantiateViewControllerWithIdentifier("ViewControllerIdentifier") as? ViewController
self.navigationController?.pushViewController(viewControllerObj!, animated: true)

另外,确保你的 navigationController 不是 nil

...希望对您有所帮助

关于ios - 选择 TableView 中的每个单元格时呈现不同的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36592976/

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