我有一个底部有标签的应用程序。在更多选项卡上,我在列表中有两件事,称为设置和法律。当我点击设置或法律时,我会打开设置或法律视图。当我单击主页选项卡栏然后返回到更多选项卡时,它会返回到我离开之前的位置。是否有可能返回更多选项卡的主视图?
编辑
我的标签栏控制器中有我的导航(如第二张图片)。
你在用UITabBarController
吗?如果是这样,您可以在创建它时或在您的 nib 中设置它的委托,并监听选择:
-(void) tabBarController:(UITabBarController*)tabBarController didSelectViewController:(UIViewController*)viewController {
// Check if the selected tab is a UINavigationController
if ([viewController isKindOfClass:[UINavigationController class]]) {
UINavigationController* nav = (UINavigationController*) viewController;
[nav popToRootViewControllerAnimated:NO];
}
}