I have the following situation of my app. Four child VCs need to have a data source delegate, which their root VC (they all share one root VC) must implement.
My question is - do I declare a protocol in each child VC and implement each protocol individually in the root VC, or is there a better way? Somehow define the protocol only once?
Thanks
