I am trying to build a framework for an application, but when I run the nm -m command on the built framework, I see all of my instance variables in my swift files
000000000000d7b8 (__TEXT,__const) non-external OBJC_IVAR$__TtC28MyClass.myVariable
I have set the following in my xcode pbx project.
STRIP_STYLE = "non-global"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; DEPLOYMENT_POSTPROCESSING = YES; GENERATE_MASTER_OBJECT_FILE = YES;
These seem to strip a lot of debug symbols but not my internal instance variables.
How can I get rid of these variables?