我在代码中有 ViewControllers A 和 B。
当我按下按钮时,A 呈现 B。然后在 BI 中添加一个导航栏,其中包含一个名为“返回上一屏幕”的导航项。然后我尝试做这个逻辑:当按下导航项时,执行以下代码回到B的presentingViewController,在这种情况下我认为是A。
[self presentViewController:self.presentingViewController animated:YES completion:nil];
但不幸的是A没有出现。我在 lldb 中使用“print [self.presentingViewController class]”命令,我可以看到类是 A。我做错了什么?