I have three view controllers embedded in UITabBarController. Each view controller is embedded in navigation controller.
The logic of my app is to have navigation right bar button on all tab bar view controllers (i.e. "Menu" button which should be seen from each view controller). The easiest way to achieve this is to add this button to all navigation controllers separately. But I think it is not good solution because then the code for this button must be repeated in each navigation controller.
Is there any way to have same navigation right button on all controllers of UITabBarController?
(In my app i'm not using Storyboards)