I've made an iOS code library in pure C++, which I intend to publish to a lot of people. As far as I know, at the time of writing, the only way to share compiled code on iOS is through a static library.
Unfortunately, there are some clever bits in the code which I'd like to hide from public view. What I'd like to do is only expose the symbols for a single (simple) interface class, and hide everything else. Is this possible?
Any other ideas on how to hide my symbols are also very welcome. Thanks for your time!