I'm building a cocoa touch static library on iOS which I would like to distribute. I've compiled a release and a debug version, by updating the Schemes. When I look at the size of the produced library, the release version is 2195504 bytes whereas the debug version is 2021216 bytes. (in the Products/Release|Debug-iphoneos directory)
Shouldn't the release version be smaller?
When I link the release version of the library into the application, I would expect to not be able to see the source code within the static library, but I continue to see the source code when stepping through the code.
Do you suspect that I have not built the release version of the static library correctly?