我有 2 个视图(视图 A 和视图 B)。
在 viewA 中,当我触摸一个按钮时,我执行此代码来翻转 viewB:
viewB.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:viewB animated:YES];
现在,当我回到 viewA 时,我使用以下代码:
[self dismissModalViewControllerAnimated: YES]; //here is my problem
执行解除时,我需要为 viewA 设置相同的参数。我该怎么做?
编辑 我还没有找到任何解决方案,我以这种方式使用了 pushNavigation:
FirstViewController *viewA = [self.storyboard instantiateViewControllerWithIdentifier:@"myView"];
// Effettuo il push alla view successiva
[self.navigationController pushViewController:viewA animated:YES];