So i know how to make delegates and pass them using prepare for segue; however, I have a 3 Views (lets Call them A, B & C). View A connect to view B. View B has a button that leads to view C. In View C, there is a switch that toggles...
view connection: A->B->C
I want to make it so when the switch is toggled in View C, View A knows about it. without using KVO since the relationship is still 1-to-1
You can pass a closure A->B->C, invoke the closure in View C when the switch is toggled and pass whatever info you want to the closure to inform View A.