swift 将数据从ViewController传递到另一个

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 将数据从ViewController传递到另一个相关的知识,希望对你有一定的参考价值。

//Section 13, Lecture 156

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if segue.identifier == "sceondScreen" {
        
        let destinationVC = segue.destination as! SecondViewController
        
        destinationVC.data = data
        
    }
}

以上是关于swift 将数据从ViewController传递到另一个的主要内容,如果未能解决你的问题,请参考以下文章

Swift:将数据从 tableView 显示到另一个 ViewController(JSON、Alamorife、AlamofireImage)

Swift:iOS - 通过第三类将数据从 ViewController 传递到 xib 文件

Swift:iOS - 通过3rd类将数据从ViewController传递到xib文件

使用 Swift 3 将数据从 Modal Viewcontroller 传递到 rootController(不要 Segue)

如何将变量从 ViewController 类传递给其他结构?

如何在使用桥接头时将数据(字典)从 Objective-C 控制器传递到 Swift `viewcontroller` 中?还有其他方法吗?