I have a project in Swift 2 with two Table View Controllers embedded in two Navigation Controllers with segue in between.
Simply: Table View A -> Table View B
There is a + button in Table View A that segues modally to Table View B. There is a Back button in Table View B that should unwind segue back to Table View A.
I have crated the @IBAction func unwindFromSegue(segue: UIStoryboardSegue)
function in the destination view controller (where I want to unwind to).
I have connected the Back button with ctrl+drag to the Exit of Table View B (and connected to the unwindFromSegue function).
But the unwind segue is not happening at all :( Simply clicking on the Back button does not do anything.
What can be wrong?