search

Home  >  Q&A  >  body text

ios - app在跳转页面的时候崩溃了

app无论用push或是present跳转页面都会崩溃,很少情况是正常的,目前没有找到规律
目前只有一个VC出现这种情况,打了断点没有效果,没有定位到,按照网上定位僵尸的方法也不见效,崩溃后一律跳到main.m,如图

控制台输出的内容与错误相关的只看到这个,如图
这个10005的错是百度导航的

跳转的代码如下

SearchLocationViewController *searchVC=[[SearchLocationViewController alloc] init];
searchVC.destination=self.travelView.model.destination;
[self presentViewController:searchVC animated:YES completion:nil];

问题不是出在赋值的地方,赋值的地方注释掉仍然会崩溃

我找到问题所在了

-(void)viewWillDisappear:(BOOL)animated{
    [super viewWillDisappear:animated];
    dispatch_cancel(self.timer);
    self.timer=nil;
}

这段代码里的关闭timer导致的崩溃,注释掉之后就不会发生崩溃

迷茫迷茫2772 days ago571

reply all(3)I'll reply

  • 大家讲道理

    大家讲道理2017-04-18 09:57:59

    Get a breakpoint for debugging. There should be something wrong with the data you retrieved from the model.

    reply
    0
  • 高洛峰

    高洛峰2017-04-18 09:57:59

    Check the usage requirements of thisdestination, 是不是拿到的这个值存在问题,不能满足searchVC .

    searchVC.destination=self.travelView.model.destination;

    reply
    0
  • 阿神

    阿神2017-04-18 09:57:59

    You present a blank VC to take a look

    reply
    0
  • Cancelreply