0

我在我的项目中使用 UIModalViewController 无法在顶部添加 UINavigationBar。我还在我的项目中使用其他 UIModalViewControllers,我成功地添加了 UINavigationBar。无法使用的 UIModalViewController 和其他的唯一区别是,它链接到其他几个 ViewController(都使用模式“推送”到它),而其他 ModalViewController 只是链接到其他 1 个 ViewController。

当我尝试向其中添加 UINavigationController 时,我正在使用以下代码:

ShowTaskViewController *detailViewController = [[ShowTaskViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc]        initWithRootViewController:detailViewController];

navController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self.navigationController presentModalViewController:navController animated:YES  completion:nil];
[navController release];
[detailViewController release];

但是没有添加任何栏。我没有收到任何错误或任何东西。知道这里可能发生了什么吗?

4

0 回答 0