EXC_BREAKPOINT崩溃

时间:2015-08-03 10:05:14

标签: ios objective-c iphone

我使用navigationcontroller进行了此设置:

SlideMenuController - > SchedulesViewController - > Schedule ViewController - > IntervalView

schedulesviewcontroller是所有计划的列表。 Schedule ViewController是包含有关计划的信息的视图。 IntervalView是一个viewcontroller,它有一个自定义选择器视图选择一个值。

我可以加载SchedulesViewController,然后转到ScheduleViewcontroller,也可以从那里转到IntervalView。

但是当我尝试点击“后退”按钮时,它适用于Schedule ViewController,但当我想回到“SchedulesViewController”时,它会崩溃

[IntervalView respondsToSelector:]: message sent to deallocated instance 0x7fc78d320dc0

Thread 1 > EXC_BREAKPOINT(code=EXC_I386_BPT)

我不知道向您展示什么代码,我们将不胜感激。

1 个答案:

答案 0 :(得分:0)

这是因为您的SlideMenuController点击后无法从SchedulesViewController弹出。

在后面点击时你需要推动你想要的其他视图控制器。

希望这会有所帮助。