带有滑出菜单的标签栏
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".
谢谢
- 你可以编程访问Cocoa Touch中的标准本地化string吗?
- 万能链接打我的服务器?
- 以编程方式更改视图尺寸时,Autolayout似乎不起作用
- ios应用内订阅 – original_transaction_id何时更改?
- 在beginEditing中selectUISearchBar中的所有文本?
- IOS将UIProgressView添加到AVFoundation AVCaptureMovieFileOutput
- Xcode:Swift – 如何根据执行环境声明具有不同值的变量/常量?
- 以(后缀)结尾,包含在SQLite FTS中使用MATCH进行stringsearch
- 如何编码一个string的特殊字符,将被张贴到一个URL? Objective-C的