Hi I have a tabBarController,I want to use the delegate method of tabBarDelegate not of the tabBarControllerDelegate.i.e; I want to use
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item
I am doing this:
self.tabBarController.tabBar.delegate = self;
and then using the above method but the problem is that the above method never get called.