0

分割ビューベースのアプリケーションを実装しています。

左側のビュー/ルートビューの下部にあるアプリケーションに、3つのルートビュー用の3つのタブがあります。このために、アプリデリゲートのタブバーに3つのビューコントローラーを追加しました。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    RootViewController *tab1 = [[RootViewController alloc] init];
    DashboardViewController *tab2=[[DashboardViewController alloc] initWithNibName:@"DashboardViewController" bundle:nil];
    SendUpdatesViewController *tab3=[[SendUpdatesViewController alloc] initWithNibName:@"SendUpdatesViewController" bundle:nil];


    NSArray *tabViewArray=[[NSArray alloc] initWithObjects:tab1,tab2,tab3,tabBar,  nil];
    tabBar=[[UITabBarController alloc] init];
    [tabBar setViewControllers:tabViewArray];

    self.splitViewController.viewControllers = [NSArray arrayWithObjects:tabBar,_detailViewController, nil];

    self.window.rootViewController = self.splitViewController;


    [self.window makeKeyAndVisible];
    return YES;
}

次に、タイトルアイコンと、これらのタブに対応するアクションを追加する必要があります。

4

1 に答える 1

0
于 2012-05-09T05:16:53.273 に答える