What I want: When I'm on my green screen and push the button "PushToBrown" I want the brown screen "think" that I'm coming from blue. So if push the back Button in my brown screen I always want to go back to blue.
At the moment: I call from my green screen programmatically for example performSegueWithIdentifier(..., nil) and can switch to brown or just implement it by drag&drop (from the button "PushToBrown" to the brownVC screen). But if push the "back Button" I go back to Green. -> How can I tell brown he should always go back to blue?
I suppose that's a problem with the navigation Controller. You could also help me if you know some really good tutorials for segues or navigationcontroller handlding.
Thanks in advance!