0

我有 PopupoverControl,这个弹出窗口有 UIViewtablecontrol,其中一个 UITable 控件应该导航到另一个 UIViewtablecontrol 但它不导航这是第一个 uitableview 中的选择代码:

OpenFileViewController *openfileview = [[OpenFileViewController alloc] initWithNibName:@"OpenFileViewController" bundle:nil v_files:[self GetFiles] v_ui:parentview];
        UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:openfileview];
        [self.navigationController presentModalViewController:navController animated:YES];

在两个 uiviewtable 的 .xib 文件中,我启用了带导航栏的顶部栏,但它没有出现,为什么?

4

1 回答 1

0

不需要 new navController,试试这个:

[self.navigationController pushViewController:openfileview animated:YES];

编辑

弹出框的根视图控制器应该是一个UINavigationController对象,所以在创建弹出框时试试这个:

UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController: optionw];
UIPopoverController *optioandiaglog= [[UIPopoverController alloc] initWithContentViewController:navController];
于 2012-06-30T08:00:08.033 回答