我在代碼中有ViewControllers A和B.將self.presentingViewController呈現給前景
我按下按鈕時呈現B.然後在B中添加一個導航欄,其中有一個名爲「返回上一屏幕」的導航項。然後,我嘗試做這樣的邏輯:當按下導航項目,執行下面的代碼返回到B的presentingViewController,其中,在這種情況下,我認爲這是A.
[self presentViewController:self.presentingViewController animated:YES completion:nil];
可惜不顯示向上。我在lldb中使用「print [self.presentingViewController class]」命令,我可以看到這個類是A.我做錯了什麼?
這工作正常。這很奇怪,我的代碼根本不起作用。 – newguy