我正在尝试将 leftBarButtonItem 添加到我的 iPhone 应用程序中。我有导航控制器,里面有 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 或故事板。