UINavigationController popViewControllerAnimated: crash in iOS 6

后端 未结 3 1170
轮回少年
轮回少年 2020-12-21 03:32

The code below works fine in iOS 4 and 5 but crashes in iOS 6 with EXC_BAD_ACCESS. I\'d appreciate any help in troubleshooting it. This code is being called in

相关标签:
3条回答
  • 2020-12-21 04:15

    Though super late to party... Hope this might help someone in future. I opened a very old code...

    Enabling ARC mode and then resolving all the compiler warnings/error fixed it automatically.

    0 讨论(0)
  • 2020-12-21 04:16

    Check whether you have a line like the following somewhere in your view controller code:

    self.navigationController.delegate=self; 
    

    If so, then you must set it back

    self.navigationController.delegate=nil;
    

    before you say

    [self.navigationController popViewControllerAnimated:YES]; 
    

    Otherwise, popViewControllerAnimated will first deallocate the delegate and then try to call it - resulting in a crash.

    0 讨论(0)
  • 2020-12-21 04:16

    I know my question was vague, but I didn't have much else to go off of. I knew the line [self.navigationController popViewControllerAnimated:NO]; was the problem but I couldn't figure out why. Then I came across this question and the first answer suggested I make my search table an instance variable rather than creating a new one every time I want to present it, and that actually worked. It must be a memory issue that I can't wrap my head around.

    tl;dr :

    Make sure the UIViewController that's being pushed and popped is an instance variable.

    0 讨论(0)
提交回复
热议问题