このタブ バーがある 最初のアイテムを選択したときに、たとえばこのタブ バーのすべての tabBarItem を構成したい このビュー (My Espace) に移動したい 最初のアイテムなど
私はこのコードを作成しましたが、うまくいきませんでした!
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item{
if(self.tabBar.selectedItem==[self.tabBar.items objectAtIndex:0])
{
CondidatsViewController *condidatsViewController=[[CondidatsViewController alloc]initWithNibName:@"condidatsViewController"bundle:nil];
[self.navigationController pushViewController:condidatsViewController animated:YES];
}
}