我有一个适用于 iPhone 代码的 segue,用于呈现嵌入在导航控制器中的 tableViewController 的内容。
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
UINavigationController *nc = (UINavigationController *)segue.destinationViewController;
tvc = (MyTableViewController *)[nc.viewControllers lastObject];
tvc.managedObjectContext = managedObjectContext;
}
tvc 是一个故事板项目,UITableViewController 子类,嵌入在一个 navigationController 中。我试图找到在 iPad 上使用相同设置的最简单方法,但在弹出窗口中显示内容,使用导航控制器,而不是像现在那样显示全屏。否则我是否需要在不使用此设置的情况下创建新的 viewController?