I am trying to get a list of classes loaded into the application at runtime. I am not interested in ALL classes, only those that are loaded. I know how to get a list of all classes, but iterating through them to check if they are in the downloaded package leads to random crashes and seems like an overwhelming way to do this.
I saw links to NSLoadedClasses, but I can't find anything about it, and I'm not sure if this applies to iOS (vs Mac). What is the right way to get this? Again, I need this at runtime.
source share