I donβt think I fully understand how objects and their source file interact with Gorm. When you subclass a class like NSObject, it seems to save a snapshot of that object according to how you set it up with points and actions.
My first question is: where is this class stored (before it was created in nib, because it is not an implementation file, but not in nib yet?

Where is the AppController configuration (my custom subclass) stored as it is in the image above? This is a temporary file because it exists before the instantiation.
Now, when it is created, it looks like a snapshot of this class, but you have not implemented it yet, since it is frozen at the tip, if you can configure it after saving the * .gorm file?

In the above image, the icon for the AppController seems to be an object, but I haven't written an implementation yet, so at what point and how are the two connected. Is the AppController in nib acting like a proxy for an object or is the object serialized in nib when compiled?
Sorry if this is confusing, I tried to explain my question as best as I could. I am very grateful for any help. :-)
source share