So i\'ve run into quite a problem. It seems that ASIHTTPRequest just does not want to work in a production build.
Everything works great in debug. However, once I build
It looks like there's a bug in ASIHttpRequest, causing this crash when running with Release mode optimizations.
What worked for me is turning off optimization for the following 2 files: ASIFormDataRequest.m ASIHTTPRequest.m
Do this by selecting the target project, select the file in "Compile sources" section of the "Build Phases" tab; and add -O0 (capitol O zero).
You can read more about it here