iPhoneアプリにleftBarButtonItemを追加しようとしています。ナビゲーションコントローラーがあり、その中にTableViewControllerがあります。AppDelegate.mファイルに次の行をコーディングしています。
self.viewCon = [[UITableViewController alloc]init];
self.navCon = [[UINavigationController alloc]initWithRootViewController:self.viewCon];
self.viewCon.navigationItem.leftBarButtonItem = [[[UIBarButtonItem alloc]
initWithTitle:@"Second View" style:UIBarButtonItemStyleBordered target:self action:@selector(push)]autorelease];
ナビゲーション項目は画面に表示されません。テーブルがオンになっています。何が問題になるのでしょうか?ちなみに、ARCやストーリーボードはありません。