Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 iOS 应用程序,我想通过其他事件或按钮按下人为地诱导导航栏中“后退”按钮的操作。这可能吗?如果可以,有什么方法可以让我这样做?
我假设您正在使用导航控制器,并且它的功能是您想要模拟的。在这种情况下,您可以直接访问它(每个视图控制器都有指向其导航控制器的链接)并要求它从堆栈顶部弹出当前视图控制器:
[self.navigationController popViewControllerAnimated:YES];