本文介绍了如何添加BackButton Facility MFSlidemenu?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经在我的项目中实现了MFSideMenu。它工作得很好,但现在我想为每个视图实现后退按钮功能。
I have implemented MFSideMenu in my project .It works great, but now i want to implement back button facility to every view.
我试试这个但是没有工作:
I try this but not working:
NSArray *array = [self.navigationController viewControllers];
[self.navigationController popToViewController:[array objectAtIndex:1] animated:YES];
推荐答案
-
这是解决方案
HomeView *Home = [[HomeView alloc]initWithNibName:@"HomeView" bundle:nil]; NSArray *controllers = [NSArray arrayWithObject:Home]; self.navigationController.viewControllers = controllers;
这篇关于如何添加BackButton Facility MFSlidemenu?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!