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
- You can do by clicking on 'Product' in the Xcode top bar.
- Press the option key and click on run.
- Under environment variables click +
- Added NSZombieEnabled and set its value to YES
This should give you more details about the object you're trying to access and help you debug the issue.