This should be easy but I am unable to figure it out, yet.
Situation
View controller 1 (text field: text_field_1)
View controller 2 (text field: text_field_2)
There is a "show segue" from view controller 1 to view controller 2, also navigation controller is included as well.
Problem
In veiw controller 1, user types something in "text_field_1",
then segue to view controller 2, user types something in "text_field_2",
then go back to view controller 1 by using navigation controller, the text typed in "text_field_1" is preserved
then segue to view controller 2 again, but the text typed in "text_field_2" is not preserved
What I want to achieve
Is there any way to preserve text in "text_field_2"?