Mi app closes with this error, when running an AdHoc build of my app in the device. I never have any problems in the simulator.
What's the exact meaning of this problem ?
Mi app closes with this error, when running an AdHoc build of my app in the device. I never have any problems in the simulator.
What's the exact meaning of this problem ?
This sounds like a memory corruption issue. You might try running with the NSZombieEnabled environment variable to make sure you're not accessing deallocated memory. See http://www.cocoadev.com/index.pl?NSZombieEnabled
ad hoc builds cannot be run under the debugger. There is a "no debugger" flag in the executable. Presumably this is done to frustrate reverse engineering of deployed apps. Compile a release style build using a Development provision, it should have the same compiler and linker settings, but won't be no-debug.