I\'m programming an application in Objective-C and I\'m getting this error:
MyApp(2121,0xb0185000) malloc: *** error for object 0x1068310: double
Check your classes and look under the dealloc method. Make sure you care calling [super dealloc].
[super dealloc].
I had this exact same problem and found out I was calling [self dealloc] instead. Just not paying attention.
[self dealloc]