2

アプリで tabBar を作成したいのですが、AppDelegate ではなく、detailView でのみ作成します。Googleでこれを行う方法を検索していますが、私が理解したものはすべてAppDelegate.m

私はこのようなことをしようとしています。これは、2 つのボタン (名前なし) を持つタブ バーを示していますが、1 つの FirstViewController から、1 つの backItemButton を持つナビゲーション バーを持つ 2 つの項目 SecondViewController または ThirdViewController のいずれかに移動して、FirstViewController に戻りたいと考えています。

- (void)viewDidLoad
{
    [super viewDidLoad];
    [self setupTabBar];
}
- (void) setupTabBar {

    tabBars = [[UITabBarController alloc] init];
    NSMutableArray *localViewControllersArray = [[NSMutableArray alloc] initWithCapacity:4];


    YPProfileViewController *profile = [[YPProfileViewController alloc] init];
    YPProfileViewController *profile2 = [[YPProfileViewController alloc] init];

    [localViewControllersArray addObject:profile];
    [localViewControllersArray addObject:profile2];


    tabBars.tabBarItem = profile2;
    tabBars.viewControllers = localViewControllersArray;
    tabBars.view.autoresizingMask==(UIViewAutoresizingFlexibleHeight);


    [self.view addSubview:tabBars.view];
}
4

1 に答える 1

4

少なくともこれは私にとってはうまくいきます。

UIViewController *vc1 = [[UIViewController alloc] init];
vc1.title = @"FIRST";
vc1.view.backgroundColor = [UIColor blueColor];

UIViewController *vc2 = [[UIViewController alloc] init];
vc2.title = @"SECOND";
vc2.view.backgroundColor = [UIColor redColor];

UITabBarController *tabBar = [[UITabBarController alloc] init];
tabBar.viewControllers = @[vc1,vc2];
tabBar.selectedIndex   = 1;
tabBar.view.frame = CGRectMake(50, 50, 220, 320);

[tabBar willMoveToParentViewController:self];
[self.view addSubview:tabBar.view];
[self addChildViewController:tabBar];
[tabBar didMoveToParentViewController:self];
于 2013-09-10T23:51:41.170 に答える