I used the following script to symbolize the crash report I got from the user:
/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Plug-ins/iPhoneRemoteDevice.xcodeplugin/Contents/Resources/symbolicatecrash myapp_iPod-Touch.crash myapp.app.dSYM > test.txt
It matches up all of the framework calls but none of my code. How can I make it mach up my code?. Give me some ideas please!
As Craig Hockenberry points out, the dSYM file you use for this must be the exact one produced when you compiled the version of the application your user is running. If you did not save that file, you will be unable to resolve the symbols within your own application. You can’t use whatever dSYM file is produced by your latest build to run against an older submitted version of your application.