当前位置:  开发笔记 > IOS > 正文

在SWRevealViewController上的didselect tableview上出错

如何解决《在SWRevealViewController上的didselecttableview上出错》经验,为你挑选了1个好方法。

当我使用SWRevealViewController类滑出菜单时,它在iphone模拟器中正常工作.但是当我试图在iphone 5设备中运行进行测试时,选择菜单按钮时它会正确显示滑出菜单,但不幸的是,在选择时单元格,它崩溃并显示以下错误.但在模拟器中没有这样的错误.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    indexPath = [[self tableView] indexPathForSelectedRow];
    if (indexPath.row==0) {

        [self performSegueWithIdentifier:@"home" sender:indexPath];

    }
  else if (indexPath.row==1) {

        [self performSegueWithIdentifier:@"cartme" sender:indexPath];

    }
   else {

        [self performSegueWithIdentifier:@"changelocation" sender:indexPath];

    }
}

由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:' - [SWRevealViewControllerSegue setDestinationContainmentContext:]:无法识别的选择器发送到实例0x175c5f90'

请帮我.



1> Sadia..:

我有同样的问题,我通过将segue类型更改为"Custom"而不是"Push"来修复它

推荐阅读
保佑欣疼你的芯疼
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有