我希望我的视图控制器有自己的导航栏。我发现这比显示/隐藏现有导航栏更容易。以下代码正在运行。这是一种反模式还是相对普遍的做法?
MyViewController *viewController = [[MyViewController alloc] init]
autorelease];
UINavigationController *wrapper = [[[UINavigationController alloc]
initWithRootViewController:viewController]
autorelease];
[self.navigationController presentViewController:wrapper
animated:YES
completion:nil];