我构建了一个应用程序。在我的观点中,我使用了TableView。所以现在我想将这个Table视图更改为导航控制器。
1-如何将UITable视图更改为导航控制器。我添加了导航代码,但我得到了一些提醒! [我知道我必须确定我的导航代表,但如何?] alt text http://freezpic.com/pics/2925e25b0b869ef954c081d374f366ed.jpg
这是我的映射视图!
AppNameViewController
FirstViewController [在此视图中我使用了表视图,我希望更改为导航]
SecondViewController
答案 0 :(得分:2)
正如Xcode告诉你的那样,-pushViewController:
上没有UINavigationController
这样的方法。您正在寻找的方法是-pushViewController:animated:
,如
[self.navigationController pushViewController:anotherViewController animated:YES];
答案 1 :(得分:0)
在app delegate的applicationDidFinishLaunching:
方法中执行此操作:
FirstViewController *firstVC = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:firstVC];
[window addSubview:[navigationController view]];
[secondVC release];
[navigationController release];