UITableView
私の目標は、ある程度のナビゲーションを備えたを作ることです。UITableViewController
私が使用するのはテーブルビューだけなので、本当にとを使いたいですUINavigationController
。
のサブクラスを作成しましたUITableViewController
。xib
ファイルは次のとおりです。
クラスは UITableViewController サブクラスであるため、自動的に生成されます。ナビゲーションバーを取得するだけで十分ですか、それとも xib に何かを追加する必要がありますか。
.m
ファイル内の関連コードは次のとおりです。
- (void)viewDidLoad
{
[super viewDidLoad];
UITableViewController *tableViewController=[[UITableViewController alloc]initWithNibName:@"ViewController" bundle:nil];
UINavigationController *navController=[[UINavigationController alloc]initWithRootViewController:tableViewController];
self.view.window.rootViewController=navController;
//Create the modal for the UITableView
array1=[NSArray arrayWithObjects:@"Categorie 1",@"Categorie 2",@"Categorie 3",@"Categorie 4",@"Categorie 5",@"Categorie 6",@"Categorie 7",@"Categorie 8",@"Categorie 9",@"Categorie 10", nil];
}
そして、ここに私が得たものがあります:
ビューの上部にナビゲーション バーが表示されるのを待っていました。私は何かが足りないことを知っているので、私と一緒に我慢して助けてください。ありがとう。