我有一个带有 3 个按钮的视图,当用户单击第一个按钮时,它会转到 seconViewController 使用此代码。
PerformViewController * pvc=[[PerformViewController alloc]initWithNibName:@"PerformViewController" bundle:nil];
[self presentViewController:pvc animated:YES completion:nil];
[self dismissViewControllerAnimated:YES completion:nil];
我使用的另外两个按钮 [self.navigationController pushViewController:gmavc animated:YES];
工作正常,但是当使用时点击第一个按钮,点击显示 secondViewController。然后回到它的 viw 控制器我使用了这段代码
ViewController *vc=[[ViewController alloc]initWithNibName:@"ViewController" bundle:nil];
[self presentViewController:vc animated:YES completion:nil];
[self dismissViewControllerAnimated:YES completion:nil];
回到 parant 视图控制器后,我的另外两个按钮推送导航控制器无法正常工作,而不是为什么会发生这种情况。