If ViewController1
is not being presented but ViewController2
is: I can easily update GUI in ViewController1
from ViewController2
but I cannot retrieve any values in ViewController1
while ViewController2
is presented. When ViewController1
is not being presented it always returns properties as nil.
In my case, each view controller is being presented on a tab bar view controller.
What would be the best way to go about solving this?Thank you.