I have a PresentingViewController (VC1) and a PresentedViewController (VC2).
VC1 --Segue:Present Modally:Over Current Context--> VC2
VC2 --RewindSegue --> VC1
The problem is that when I rewind from VC2 to VC1, it is not being "reloaded". It is nil. However if I present VC 2 modally: Full Screen, the rewind triggers a reload of VC1 and all is dandy.
Why does a rewind FROM a VC presented "Modally:Over Current Context" not reload the VC you are rewinding to? How can I present over Current Context and also force a reload of VC1 when I rewind?
Any help would be much appreciated. Thank you.