带有滑出菜单的标签栏

我的故事板

RearViewController.m

-(IBAction)unwindFromViewController:(UIStoryboardSegue *)segue { if ([segue.identifier isEqualToString:@"unwindToViewController"]) { ViewController *detail = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewController"]; [self presentViewController:detail animated:YES completion:nil]; } } 

如果我从我的RearViewController点击回来, ViewController不会呈现,而只是窥视和熄灭(再次显示RearViewcontroller )。

镜像2

在这里输入图像说明

我给你一个解决你的问题。

  1.First remove triggered segue connection. 2.After that give push segue connection to Back to your required view controller. 3.Click Back Button Segue and give Identifier name as "goToMainViewController" or whatever you want just give there.Also segue should be "push". 

谢谢