Is there any way to do something like that:
#if iOS
DoStuff();
#else
Meh();
#endif
So that the not-iOS-stuff won’t even be in the compiled iOS file? I want to lock some things for the iOS version of my game, and I really dislike the idea to compile code into the .app file I won’t need a single time.