I've been surfing the net and have found no answer to this situation I have (though I find it surprising because I can't believe I'm the first one to come over this). Maybe I don't know the correct keywords for finding it...

My problem is I build an iOS app with XCode 4.2 and test it running directly in an iPhone 3G with iOS 4.2.1 and everything runs as it is supposed to. However, if I build an .ipa and install it in that same device (where I have previously uninstalled the former installation of the app), it install perfectly and almost all the app works fine... but for one place that is not working properly.

I don't enter in details of what is exactly happening because it is something that has happened before in other apps with other devices (i.e. ipad 1, iphone 4...) (once I found out that compilation and execution directly to a Device was letting an uninitialized rect being added to something, while in .ipa it crashed (I think it was a SIG_ABRT but don't know exactly).

Is this situation documented anywhere? What cases compile in one way and others don't?

Thanks in advance!

link|improve this question
Please paste the crash log here so we can get a sense of what is going on. – dtuckernet Jan 17 at 19:24
1  
It might have to do with your compiler settings. Usually an ipa will have compiler optimizations set to -Os (fastest, smallest). This could potentially cause a race condition. – Sam Jan 17 at 19:27
dtuckernet there is no crash log because nothing is crashing here, there's just some drawing (using 2D drawing functions) that is not working the way it should. Sam I'll try something with the flags and see what happens. – user1154696 Jan 18 at 16:12
Sam, I've compiled the ipa without optimizations and everything works perfectly! Thanks for your suggestion ;) – user1154696 Jan 18 at 16:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.