在您的目標視圖控制器中創建一個字符串類型的變量。
DestinationViewController.Swift
class DestinationViewController: UIViewController {
var driverName: String?
override func viewDidLoad() {
super.viewDidLoad()
print(driverName)
}
}
CurrentViewController.swift
在你CurrentViewController覆蓋prepareForSegue:sender:
方法。
class CurrentViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
let destnationVC = segue.destination as! DestinationViewController
destnationVC.driverName = "Home nath"
}
}
學習如何從CurrentViewController數據傳遞到DestinationViewController和DestinationViewController到OrignViewController它會幫助你很多。
參照Passing Data between View Controllers。
如果您發佈了您已經嘗試過的解決方案以及發生了什麼錯誤,這會更有幫助。 – Brduca
我幾乎已經完成了調用url打印url和從服務器獲取的對象..現在我無法打印特定的object.for,我試過了:var result = jsonResults [「error_msg」] as?字符串 打印(「休息:\(結果)」) – antonyraja
你可以upvote我的答案,如果它可以幫助你:-) –