Hi guys - I was at client site today and made a couple of bug fixes there and then. I deployed the working copies of the app to their iPads and iPhone. Perfect. I have come home and now run the app in the Simulator.... but it crashes each time and I cannot figure out how. Unfortunately, I cannot see what I have changed which would cause this.
Does anyone know why you'd see the error message Program received signal: “EXC_BAD_ACCESS”
on the simulator and not the iPad or iPhone?
I'm using Xcode 3.2.4 with OS4.1 on the iPhone 3GS and iPad 3.2.2 running on OSX 10.6.4
Thanks for any information. I'm tearing my hair out....!
[update]
here's the code where it's failing
- (void)dealloc
{
if (_node)
{
if (_node->_private == self) //THIS IS THE LINE that debug is stopping on
_node->_private = NULL;
_node = NULL;
}
//
[super dealloc];
}