I have a navigationController app.
I push a tabbar onto the view. Tabs are working title is changed, perfect. Now one of my tabs has a list and I try to link out to a child page within the tabbar:
NextViewController *nextController = [[NextViewController alloc] initWithNibName:@"ProfileDetailController" bundle:nil];
[self.navigationController pushViewController:nextController animated:YES];
Nothing happens. Course this works:
self.view = nextController.view;
I want to be able to push to this subpage within my tabbar AND change the navigationbars buttons. Is this possible?
It sounds like you’re pushing a
UITabBarControlleronto aUINavigationController? From Apple’s documentation, you can’t push a tab bar controller onto a navigation controller.What you probably want to do is the opposite: have a tab bar controller with
UINavigationControllers as the tab items. This is similar to the interface in, say the iPod app or Phone app.