我想從SecondViewController傳遞數據到我的FirstViewController,當我點擊我的後退按鈕(UINaviagtionController)。(重新) - 通過點擊後退按鈕後通過數據
對於來自FirstViewController通過我的數據給SecondViewController我這樣做:
if segue.identifier == "showSecondVC" {
let vc = segue.destination as! SecondViewController
vc.rows = rows[pathForAVC]
vc.lap = lapTime[pathForAVC]
vc.indexPath = pathForAVC
}
但我不知道如何從SecondViewController傳遞數據給FirstViewController,我真的不明白,關於它的堆棧主題溢出。
我想轉讓,當我點擊這裏:
感謝。
感謝您的答案兄弟和謝謝你的網站在斯威夫特。我會做你的關於代表的教程。 – pierreafranck