I'm working on a project where we have a FooViewController, and a BarListController. The list of Bars now needs to depend on the Foo being viewed. So does anyone have a recommendation of how to do this?
I don't need an answer from an implementation perspective, necessarily, but more from a design perspective. That is:
- Should the
FooViewControllersomehow tell theBarListControllerwhatFoois being viewed? - Should the
BarListControllerask theFooViewControllerwhatFoois being viewed? - In either case, how do you inject these things into one another? (This part I need implementation help ;-) )
Thanks for any help!