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.
在我的应用程序中,我使用 UINavigationController 在视图控制器之间导航。每当用户导航回主视图控制器时,我都想查看弹出了哪个视图控制器。
有没有办法从主视图控制器确定这一点?
提前致谢!
真挚地,
佐利
我认为您必须放置自己的自定义按钮,而不是使用导航控制器默认后退按钮。并在该自定义按钮的选择器中尝试以下代码。
NSLog(@"><><><%@", NSStringFromClass([[self.navigationController.viewControllers lastObject] class]));
希望它会帮助你。