基本的に、View Controller 1 にタブ バーがあります。このタバアイテムがView Controller 2内で触れられているかどうかを検出しようとしています.そのようなタスクを実行するための最良の方法は何ですか? 必要に応じて、より具体的なコードを投稿できます。
ビューコントローラー1
TUHomeViewController *homeViewController = [[TUHomeViewController alloc] initWithNibName:nil bundle:nil];
UINavigationController *homeNavigationController = [[UINavigationController alloc] initWithRootViewController:homeViewController];
homeNavigationController.tabBarItem = [[DSTabBarItem alloc] initWithFinishedSelectedImage:[UIImage imageNamed:@"home"]
finishedUnselectedImage:[UIImage imageNamed:@"home1"]
iconSize:CGSizeMake(76, 59)
tag:0];
[tabBarViewControllers addObject:homeNavigationController];
ビューコントローラー2