gpt4 book ai didi

ios - 如何将特定的 UITableView 行发送到特定的 ViewController?

转载 作者:行者123 更新时间:2023-11-28 15:56:05 26 4
gpt4 key购买 nike

我有 3 个 ViewControllers 和一个包含 3 个项目的 TableView 。

如何将每个 tableview 行发送到不同的 viewcontroller

这是我的代码:

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

var data: [String] = ["Go to First VC", "Go to Second VC", "Go to Third VC"]

@IBOutlet weak var myTableView: UITableView!

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

// Table configurations
myTableView.dataSource = self
myTableView.delegate = self
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell()
cell.textLabel?.text = data[indexPath.row]
return cell
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return data.count
}
}

我的猜测是在 didSelectRowAt 函数中应用 performSegue(),但我不知道如何引用特定行。

最佳答案

这个很简单

在您的 didSelectRowAtIndexPath 方法中,只需检查 indexpath.row

if indexPath.row == 0 {
// go to first viewController
} else if indexPath.row == 1 {
// go to Second viewController
} else if indexPath.row == 0 {
// go to Third viewController
}

关于ios - 如何将特定的 UITableView 行发送到特定的 ViewController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41720328/

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