我已经实现了一个类似 facebook 的幻灯片菜单。当我滑动导航栏时,“设置”视图将出现在下方。
问题是当我尝试从“设置”视图呈现模式视图时。我尝试实现一个反馈系统(MFMailComposeViewController),但如果我从下面的设置视图中呈现它,一半的模式视图将被覆盖视图(rootView 控制器)阻止。
我能做些什么来解决这个问题?
提前致谢
masterViewController = [[MatchTable alloc] initWithNibName:@"MatchTable" bundle:nil];
self.navigationController = [[UINavigationController alloc] initWithRootViewController:masterViewController];
self.window.rootViewController = self.navigationController;
[self.window makeKeyAndVisible];
Settings *sideMenuViewController = [[Settings alloc] initWithNibName:@"Settings" bundle:nil];
// make sure to display the navigation controller before calling this
[MFSideMenuManager configureWithNavigationController:self.navigationController sideMenuController:sideMenuViewController];