用于视图控制器的观察者 iPhone
有什么方法可以检查当前导航控制器或当前在应用程序委托方法中可见的视图控制器。
我想在应用程序委托中创建一个观察者,观察控制器被推送到堆栈中和从堆栈中弹出,以便我可以显示所需的选项卡栏控制器。基本上我的应用程序有多个标签栏控制器。
Is there any way to to check the current navigation controller or the view controller currently visible in application delegate method.
I want to create an Observer in application delegate that observes the controller being pushed and pop from the stack so that i could display the required tab bar controller. Basically my app have more than one tab bar controllers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当视图控制器堆栈更改其状态时,请考虑使用 NSNotification 实例。 Google 有很多此类的示例和解释(示例)。
Consider using
NSNotification
instances when your view controller stack changes its state. Google has lots of examples and explanations of this class (for example).