通过单击表视图中的单元格 – Swift iOS打开新的视图控制器

前端之家收集整理的这篇文章主要介绍了通过单击表视图中的单元格 – Swift iOS打开新的视图控制器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下onClick函数
func tableView(tableView: UITableView,didSelectRowAtIndexPath indexPath: NSIndexPath) {

    tableView.deselectRowAtIndexPath(indexPath,animated: true)

    let row = indexPath.row
    println("Row: \(row)")

    println(meetingArray[row] as! String)

}

它打印出单击的单元格上的文本。工作正常

我只是想知道如何设置一个功能,这将引导您到新的视图控制器

编程方式:
let destination = UIViewController() // Your destination
navigationController?.pushViewController(destination,animated: true)

故事板:
首先,您必须为视图设置标识符。在下面的屏幕截图中,您可以看到输入标识符的位置。

之后,您可以使用以下代码创建“目的地”并将其推送到导航控制器:

let storyboard = UIStoryboard(name: "Main",bundle: Bundle.main)
let destination = storyboard.instantiateViewController(withIdentifier: "YourViewController") as! YourViewController
navigationController?.pushViewController(destination,animated: true)

Segue公司:
首先,您必须为您的段落设置一个标识符,如下所示:

performSegue(withIdentifier: "segue",sender: self)

override func prepare(for segue: UIStoryboardSegue,sender: Any?) {
    if segue.identifier == "segue" {
        // Setup new view controller
    }
}

编辑:为Swift 3.x更新

原文链接:/swift/320603.html

猜你在找的Swift相关文章