I am doing a proof of concept in UIApplication in xcode. In my application I have a common tool bar which include two buttons with action that shows the table view(list of items). I have done this programatically.
I have 10 viewcontroller which require the tool bar with two buttons. how can I get the tool bar in all viewcontroller screen. some viewcontroller also have their own table view.
I just inherit the toolbar class to all viewcontroller . it works fine except some viewcontroller page which have their own tableview. because the parent class (toolbar class) and derived class both are having the table view delegate so the derived class table view is override when accessing the base class table view.