I have a Storyboard iOS Application with 2 view controllers-
The first Controller has a UIButton with an outlet to the next view controller and a buttonTouchUpInside method.
At the moment, the second view controller's lifecycle begins before the body of buttonTouchUpInside runs - which is bad news because viewWillAppear relies on the body of buttonTouchUpInside being completed. How do I stop this from happening?
Thanks in Advance