Как я могу получить индекс tabBar, когда я касаюсь вкладки?
Я расширил класс до и добавил метод
- (void)tabBarController:(UITabBarController *)tabBarController
didSelectViewController:(UIViewController *)viewController
{
if (viewController == tabBarController.moreNavigationController)
{
tabBarController.moreNavigationController.delegate = self;
}
}
Но этот методне срабатывает при касании элемента вкладки.Что мне делать?