5

我知道这是一个非常重复的话题,但我无法让它发挥作用。

MainTab.h:

#import <UIKit/UIKit.h>

@interface MainTab : UITabBarController<UITabBarControllerDelegate, UITabBarDelegate> {

     IBOutlet UITabBarController *tabController;

}

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

@end

主选项卡

- (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:

在此处输入图像描述

在此处输入图像描述

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

4

1 回答 1

16

根据您的@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

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

界面构建器

连接检查器(我没有碰任何东西)看起来像:

网点

于 2012-12-04T16:31:33.973 回答