• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 从 MM 抽屉 Controller 退出左 View Controller

[复制链接]
菜鸟教程小白 发表于 2022-12-11 17:23:08 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在使用 MMDrawerController。我使用 LeftViewController 中的 TableView 在自定义单元格中显示我的数据。

LeftViewController 当我单击条形按钮时从左侧滑出。

单击我的 TableView 的自定义单元格后,我想从 LeftViewController 重定向到其他 ViewControler

在我的 LeftViewController 我使用下面的代码

-(void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
{
    [self performSegueWithIdentifier"CenterViewController" sender:self];
}

-(void)prepareForSegueUIStoryboardSegue *)segue senderid)sender
{
    NSIndexPath *path = [self.tableView indexPathForSelectedRow];
    ViewController *VC = (ViewController *)[segue destinationViewController];

}

注意:CenterViewControllerViewController

Storyboard ID

通过使用上面的代码,ViewController 出现在 LeftViewController 的顶部,但我想关闭 LeftViewController 并重定向到 ViewController

My Storyboard

我使用了下面的代码,虽然它可以工作,但是在 ViewController

上左右滑动不起作用
-(void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath
{
    ViewController *ggg = [self.storyboard instantiateViewControllerWithIdentifier"ViewController"];
        UINavigationController *navcon = [[UINavigationController alloc] initWithRootViewController:ggg];
    AppDelegate *app =[[UIApplication sharedApplication] delegate];
    app.window.rootViewController = navcon;
    [app.drawerController toggleDrawerSide:MMDrawerSideLeft animated:YES completion:nil];
}



Best Answer-推荐答案


我认为您有以下选择:

  1. CenterViewController中实现UITableViewDelegate,并将CenterViewController实例赋值为UITableView的委托(delegate)>LeftViewController.
  2. LeftViewController 创建一个 delegate,这样您就可以将 UITableViewDelegate 的逻辑保留在 LeftViewController 中并实现CenterViewController 中的新委托(delegate)并将其分配为 LeftViewController 的委托(delegate)。
  3. 使用NSNotificationCenter在用户选择LeftViewControllerUITableView中的某项并添加CenterViewController时发布通知> 作为通知的观察者。

更新 1

您好,在代码中,我看到您正在分配一个新的 rootViewController,可能会用您自己的 ViewControler 替换 MMDrawerController 的实例,因此您松开了滑动手势。

也许您唯一需要的是将中心 Controller 分配给 MMDrawerController 调用 setCenterViewController:

而不是

app.window.rootViewController = navcon;

使用

[drawerControllerInstance setCenterViewController:navcon];

关于ios - 从 MM 抽屉 Controller 退出左 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39183499/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap