私のヘッダーファイルにはこれがあります:
@interface TabBarController : UIViewController <UIApplicationDelegate, UITabBarDelegate, UITabBarControllerDelegate>{
IBOutlet UITabBarController *tabBarController;
}
-(void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
@end
私のメインファイルにはこれがあります:
@synthesize tabBarController;
-(void)viewDidLoad{
[super viewDidLoad];
self.tabBarController.delegate = self;
self.view = tabBarController.view;
}
-(void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item{
NSLog(@"rawr");
}
- (void)viewDidUnload {
[super viewDidUnload];
}
- (void)dealloc {
[tabBarController release];
[super dealloc];
}
@end
インターフェイスビルダーでファイルの所有者にデリゲートとしてmy を既に接続tabbarcontroller
していますが、それでもdidSelectItem
メソッドを呼び出すことはありません。
ここに欠けているものはありますか?
すでに追加tabBarController.delegate = self;
しましたが、まだ機能しません。