我有一个导航控制器应用程序。
我将标签栏推到视图上。标签的工作标题已更改,完美。现在我的一个标签有一个列表,我尝试链接到标签栏中的子页面:
NextViewController *nextController = [[NextViewController alloc] initWithNibName:@"ProfileDetailController" bundle:nil];
[self.navigationController pushViewController:nextController animated:YES];
没发生什么事。当然这有效:
self.view = nextController.view;
我希望能够在我的标签栏中推送到此子页面并更改导航栏按钮。这可能吗?