Hi
The title can be found in viewController.tabBarItem.title
Example
Code:
// Optional UITabBarControllerDelegate method
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
if ([viewController.tabBarItem.title isEqualToString:@"something"])
{
// Do something
}
}