My app is working fine on simulator all the while until i upgraded to OS Lion & xcode Version 4.1.
Now I got the error below.
EXC_BAD_ACCESS
warning: Unable to restore previously selected frame.
But It’s working fine on iPhone.
Appreciate for any suggestion …
If you’re getting an EXC_BAD_ACCESS error that means you’re doing something wrong and dealing with either released or uninitialized objects. These errors don’t always show up, and when they do, they show up well after the actual infraction. My point is this, just because its working fine on the iPhone doesn’t mean the error does not exist.
Try enabling NSZombieEnabled
This should give you more details about the object you’re trying to access and help you debug the issue.