gpt4 book ai didi

ios - 单击 TableView 某个部分中的任意位置后如何执行 segue?

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

在我的应用程序中有一个包含五个部分的 tableView。第五部分的标题为“注释”,单元格的文本为“单击此处添加注释”。单击单元格后,应用程序将转到另一个带有 textView 的 View Controller 。为了使其更加用户友好,我希望当用户单击标题标题下方的任意位置(屏幕截图中的黄色区域)时,应用程序可以跳转到 textView。无论如何要这样做吗?我的代码:

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

switch indexPath.section {

// case 0 - 3

case 4:

self.performSegueWithIdentifier("toTextView", sender: self)

default: break


}

}

tableview image

最佳答案

在您的 didSelectRowAtIndexPath() 函数中,您需要在执行任何代码之前检查所选行的部分。我提供了一个示例条件,该条件将放置在 didSelectRowAtIndexPath() 方法中。

if indexPath.section == 4 {
// Perform Your Segue HERE //
}

关于ios - 单击 TableView 某个部分中的任意位置后如何执行 segue?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37215573/

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