(Sorry, I restarted this thread as I incorrectly accepted the answer for my problem.)
My app is crashing when I navigate two view controllers in my application. For example, if I do this sequence:
RootController ViewControllerA ViewControllerB ViewControllerA
My app crashes.
It crashes when I pressed the back button in ViewControllerB. So, It seems like it is with two or more ViewControllers being pushed. Each by themselves work.
I don't know why.
I don't see any output to the console. Is there some type of debugging I should put?
I looked at the dealloc() to make sure all properties were being release before dealloc()
Any ideas?
Thank you.