TabBarController didSelectViewController无法正常工作

时间:2012-12-04 16:18:33

标签: objective-c ios xcode uitabbarcontroller uitabbar

我知道这是一个非常重复的话题,但我无法理解它。

MainTab.h:

#import <UIKit/UIKit.h>

@interface MainTab : UITabBarController<UITabBarControllerDelegate, UITabBarDelegate> {

     IBOutlet UITabBarController *tabController;

}

@property (nonatomic,retain) IBOutlet UITabBarController *tabController;

@end

MainTab.m

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    NSLog(@"main tab"); 
    [super viewDidLoad];

    self.tabBarController.delegate = (id)self;
    [self setDelegate:self];

    // Do any additional setup after loading the view.
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
}


-(void) tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{

    NSLog(@"selected %d",tabBarController.selectedIndex);

}

我无法找到我所遗漏的内容,任何帮助都将受到赞赏。

现在我尝试将其链接到MainStoryBoard:

enter image description here

enter image description here

但它不起作用,有什么联系?

1 个答案:

答案 0 :(得分:15)

根据您的@interface(以及随后的屏幕快照),MainTabUITabBarController,因此以下行:

self.tabBarController.delegate = (id)self;

应该是:

self.delegate = self;

您不希望tabBarController中的UITabBarController属性本身,也不想使用self.tabBarController语法。如果您尝试从其中一个子控制器引用标签栏控制器,则只使用该语法。在标签栏控制器本身时,只需参考self


因此,如果将MainBar定义为:

,则可行
//  MainBar.h

#import <UIKit/UIKit.h>

@interface MainBar : UITabBarController

@end

//  MainBar.m

#import "MainBar.h"

@interface MainBar () <UITabBarControllerDelegate>

@end

@implementation MainBar

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.delegate = self;
}

-(void) tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
    NSLog(@"selected %d",tabBarController.selectedIndex);
}

@end

并且不要忘记设置标签栏控制器的类:

interface builder

连接检查员(我没有触及任何东西)看起来像:

outlets