dSYM Archive Script
Archiving dSYM for production builds is a good idea.
An easy way to do it is to add a build script at the end of your build.
in XCode->Targets->YourBuildName
right click, and select Add -> New Build Phase -> New Run Script Build Phase
and copy in this script. ArchiveDSYMScript
Repeat for all targets. Ensure the order is after the ‘Link Binary With Libaries’ task.
NB. This excludes “Debug” and “Release” build types, as I use “Distribution” and “Distribution Ad-Hoc” for my distribution builds. Easy to change, if you need.
[...] I am already archiving the dSYM automatically on all release builds (see this [...]
[...] have all my dSYM files (I even use a build script that archives them all automatically), and spotlight can find them from the UDID, but to no [...]

[...] Check out my automatic dSYM script here: dSYM Archive Script [...]