开发者

How is a navigation controller added to an existing view

开发者 https://www.devze.com 2023-02-11 03:08 出处:网络
I have a tableView and want to add a new viewCont开发者_StackOverflow中文版roller so that when the user selects an item the new view shows an image and the bar at the top will allow the user to go bac

I have a tableView and want to add a new viewCont开发者_StackOverflow中文版roller so that when the user selects an item the new view shows an image and the bar at the top will allow the user to go back to the tableView.

This navigation bar at the top will be present in both views. Is it also possible to add a button e.g. share to it and link my own actions to the button?

Thanks.


Your tableView should live inside a UIViewController subclass that is itself inside of a UINavigationController. You can get this structure set up for you by selecting the "navigation-based" app in the project creation wizard. Or you can create this structure yourself in code. In your app delegate, create a UINavigationController, and set your app's first ViewController as the root view controller. Then pushing and popping view controllers is easy, just call:

MyDetailVC *vc = [[[MyDetailVC alloc] initWithNibName:@"MyDetailVC" bundle:nil] autorelease];
[self.navigationController pushViewController:vc animated:YES];

EDIT: so, to clarify, you don't "add navigation controllers to existing views," you "push and pop instances of your view controllers on to the navigation controller's stack."

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号