Either alloc and release in the showNewMenu and ditch the ivar or dismiss all of optionsNavController's modal views before you dismiss optionNavController.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.
Either alloc and release in the showNewMenu and ditch the ivar or dismiss all of optionsNavController's modal views before you dismiss optionNavController.
Hmm how do I alloc and release it? Are you referring to OptionsNavController?
And how would I dismiss all the modal views before dismissing optionsNavController? Just dismiss then as they are being passed to the next VC?
By alloc and release, I just mean create it in the method, don't leave it in memory as an iVar. You could first call dismiss modal view controller on the parent view controller. Then call dismiss on the parent's parent view controller.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.
By alloc and release, I just mean create it in the method, don't leave it in memory as an iVar. You could first call dismiss modal view controller on the parent view controller. Then call dismiss on the parent's parent view controller.
Alloc the newSearch first and then alloc the nav controller using initWithRootViewController. It's much cleaner that way and I haven't really done it any other way so I don't know if your way works.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.
Alloc the newSearch first and then alloc the nav controller using initWithRootViewController. It's much cleaner that way and I haven't really done it any other way so I don't know if your way works.
Ok so I have this, but it just brings up a blank navcontroller.
Alloc the newSearch first and then alloc the nav controller using initWithRootViewController. It's much cleaner that way and I haven't really done it any other way so I don't know if your way works.
Text limit.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.