タブバーボタンが押されるたびにイベントをキャプチャしようとしてい ますが、以下の関数をファイルに追加UITabBarControllerDelegate
しましたが、呼び出されません。また、IBのファーストレスポンダーにデリゲートを接続しましたAppDelegate.h
AppDelegate.m
tabBarController
ここの誰かが私のためにこの問題を解決するのを手伝ってもらえますか?
// AppDelegate.h
@interface AppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate>
// AppDelegate.m
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
NSLog(@"Touched Tab\n");
}