事件触发时在 TabBarController 视图之间切换
我有一个 UITabBarController,有两个不同的视图可以在之间切换。我想做的是当在 View1 中单击按钮时直接切换到 View2。然后,在 View2 中,如果他们单击按钮,则会将其切换到 View1。
当 View1 和 View2 单击 tabBarController 时,它会在 View1 和 View2 之间传输,但我试图在事件发生时为它们执行切换。
有没有办法通过调用 UITabBarController 上的方法来做到这一点?
@interface CalcAppDelegate : NSObject <UIApplicationDelegate> {
UITabBarController *tabBarController;
}
I have a UITabBarController with two different views to switch between. What I would like to do is when a button is clicked in View1 to switch directly to View2. Then in View2 if they click a button it switches them to View1.
It transfers between View1 and View2 when they click on the tabBarController fine but I'm trying to perform the switching for them when events occur.
Is there a way to do this by calling a method on my UITabBarController?
@interface CalcAppDelegate : NSObject <UIApplicationDelegate> {
UITabBarController *tabBarController;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在您想做的任何地方进行即可,
希望这会有所帮助。
谢谢,
马杜普
Simply do wherever you want to do this,
Hope this helps.
Thanks,
Madhup