私はxcode4.3.2に取り組んでおり、タブ付きのアプリケーション7を作成しました。ナビゲーションコントローラーを追加したいのですが、誰か助けてもらえますか???
質問する
102 次
2 に答える
1
applicationDidFinishingLoading
あなた のAppDelegate
:
UIViewController *viewController1 = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
UIViewController *viewController2 = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
UINavigationController *myNav1=[[UINavigationController alloc] initWithRootViewController:viewController1];
UINavigationController *myNav2=[[UINavigationController alloc] initWithRootViewController:viewController2];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:myNav1, myNav2, nil];
self.window.rootViewController = self.tabBarController;
于 2012-05-16T08:41:08.407 に答える
0
それらはインターネット上の多くのチュートリアルですが、ここにいくつかの問題があります:
タブ付きアプリケーションの作成を開始する
任意のタブのすべての「最初のビュー」で:
エディタ / 埋め込み - 内 / ナビゲーション コントローラ
于 2012-05-16T08:25:50.950 に答える