I have a UIViewController that needs to make use of the UINavigationControllerDelegate, specifically the willShowViewController method.
I am setting <UINavigationControllerDelegate> in my implementation, then I am setting the delegate to self in viewDidLoad (self.navigationController.delegate = self;). Then I implement the willShowViewController method and it works fine, however when the view controller is popped off the stack, there is a memory leak and my app is crashing. I’ve tried doing self.navigationController.delegate = nil; in both viewDidUnload and dealloc but it doesn’t help matters.
What is the correct way I can implement this delegate for use in just one of my viewcontrollers?
viewDidUnloadwill not necessarily ever be called (it’s mostly for handling low memory conditions) and by the timedeallocis called, the view controller is probably no longer contained in the navigation controller, soself.navigationControllerwould benil.I’d suggest setting the delegate to
nilin yourviewWillDisappear:implementation (and setting it inviewWillAppear:instead ofviewDidLoad).Btw, you’re seeing the exact opposite of a memory leak here. A memory leak would be memory that cannot be reached anymore and will never be freed. Here you have memory that has already been freed (your view controller), but is still referenced by a (dangling) pointer, leading to the crash. A real leak would usually not result directly in a crash.