Here is my case: I have a tabular view showing contacts. The Add button on the navigation bar is used to load another view for entering data. This new view has images in the table header, and each table cell has either a UITextField or a UITextView. When I click Cancel, the view opens and the memory is released.
Here is my problem: When I open the Add interface, specify a value in either of the UITextField or UITextView and click Cancel to return to the parent view, I get an EXC_BAD_ACCESS error. When I track it, "Add Controller" calls dealloc correctly, but after [super dealloc], when I click Continue, it throws this error. Only this, no trace, although I use NSZombieEnabled. When I run the code using the tools, I get no errors :(
Hope I explain this problem clearly. Any pointers? Thanks.
cocoa-touch
Mustafa
source share