Issue in navigation

155 Views Asked by At

Hi every i have made an application and i run in simulator and iphone its works fine and i alnalize it and remove memory leakages.

But today i ran the app on simulator when i am going to second view it display the view fine but when i came back to second view it crash without showing any message ...

Is it bad Excess? i don't think soo...

3

There are 3 best solutions below

0
On BEST ANSWER

Ok then try this

dont release appDelegate object here.it is shared copy for whole app. release all object before super dealloc.

- (void)dealloc {  
//[appDelegate release];//here crash 
[staticImageDictionary release];
 [siteData release]; 
[newdata release]; 
[connection release]; 
[webData release];
 [activity release]; 
[super dealloc];
} 
0
On

I think you are releasing the viewcontroller that has delegate for MKMapView, do not release the viewController that has MKMapView delegates. I think you released that delegate when you were fixing the memory leaks

0
On

In Objective C, It generally happens that when you realese object in dealloc method which is already "release", it will display bad excess. To track which object is already release use NSZombieEnabled You can see more clarification in your console.