0

ナビゲーションコントローラーベースのアプリケーションがありました。そして、アプリケーションでタブバーを使用することにしました。

ユーザーが特定のタブバー項目を押したときに、特定のView Controllerを表示したいのですが、コードでプログラムで表示するものを選択したいと思います。

Interface Builderでナビゲーションコントローラーをタブバーに追加しようとしましたが、そのビューコントローラーのviewWillAppearが呼び出されていません。

この機能を実装するにはどうすればよいですか?

4

1 に答える 1

1

それが「正しい方法」であるかどうかはわかりませんが、通常、3つのタブを使用してこれを行う方法は次のとおりです。

- (void)initControls {
    // Create the window.
    [self setWindow:[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]];

    // Create Tab Bar.
    tabCon = [[UITabBarController alloc] init];

    // Local array variable that holds the viewcontrollers.
    // Capacity corresponds to the number of VC's
    NSMutableArray *localVCArray = [[NSMutableArray alloc] initWithCapacity:3];

    MyFirstViewController *oneViewController = [[MyFirstViewController alloc] init];
    UINavigationController *oneNavCon = [[UINavigationController alloc] initWithRootViewController:oneViewController];
    [localVCArray addObject:oneNavCon];
    [oneViewController release];
    [oneNavCon release];

    MySecondViewController *twoViewController = [[MySecondViewController alloc] init];
    UINavigationController *twoNavCon = [[UINavigationController alloc] initWithRootViewController:twoViewController];
    [localVCArray addObject:twoNavCon];
    [twoViewController release];
    [twoNavCon release];

    MyThirdViewController *threeViewController = [[MyThirdViewController alloc] init];
    UINavigationController *threeNavCon = [[UINavigationController alloc] initWithRootViewController:threeViewController];
    [localVCArray addObject:threeNavCon];
    [threeViewController release];
    [threeNavCon release];

    // Set the tab bars array of view controllers to the localVCArray
    [[self tabCon] setViewControllers:localVCArray animated:YES];

    // Release the localVCArray, all of its contents are now retained by tabCon.
    [localVCArray release];

    // Add controls to window and show.
    [window addSubview:[tabCon view]];
    [window makeKeyAndVisible];
}

initメソッドの各viewControllerでは、次のようなことができます。

[[self tabBarItem] setImage:[dataSource tabConImg]];
[[self tabBarItem] setTitle:[dataSource name]];
[[self navigationItem] setTitle:[dataSource navConName]];

タブバーで使用するアイコン、タブバーのタイトル、およびナビゲーションアイテムのタイトルを設定します。

于 2009-05-09T12:59:23.683 に答える