带有滑出菜单的标签栏
Posted
技术标签:
【中文标题】带有滑出菜单的标签栏【英文标题】:Tab bar with slide out menu 【发布时间】:2015-07-29 08:59:13 【问题描述】: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
【问题讨论】:
你能给我们一张应用程序运行时的截图吗?这可能有助于更多地了解您想说的内容 对不起,我无法截取屏幕截图,因为 ViewController 会在 2 秒内消失 然后在选择模拟器的时候用CMD+T切换ios模拟器到慢动画,这样你也许能及时抓到屏幕 我已经更新了请检查 我不明白,有图像,这两个屏幕是不同的还是焦点在哪里? 【参考方案1】:我给你一个解决方案。
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".
谢谢
【讨论】:
以上是关于带有滑出菜单的标签栏的主要内容,如果未能解决你的问题,请参考以下文章