I've got the following in my storyboard:
ViewA contains a Container and a UIView. The container has a Table View Controller embedded in it.
I want to action something in the Table which will affect the appearance of the UIView, so I need to call a method on ViewA from my Table View Controller.
I have followed this post - the 'Passing Data Back' section, which all makes sense. Passing Data between View Controllers The problem I have is the very last step where the controller is instantiated programatically.
The storyboard (or some ios framework component) is instantiating both Controllers for me.
So, my question is, how do I get a reference to the View instance that is automatically created for me from the other Controller.
From ViewA how to I get a reference to my TableViewController in order to set the delegate?