The GDBaseObject is a base object in GDKit that contains methods and properties you'll always be using. More...
#import <GDBaseObject.h>
Public Member Functions | |
| (void) | - setGDRefs |
| A hook you can use to set references to properties on a "gd" instance. | |
| (void) | - lazyInit |
| A hook you can override to do some lazy initialization. | |
| (void) | - lazyInitWithGD: |
| Lazy init this object with a GDDocument or GDApplicationController. | |
| (id) | - initWithGD: |
| Init this object with a GDDocument or GDApplicationController. | |
Properties | |
| IBOutlet id | gd |
| A GDApplicationController or a GDDocument. | |
| IBOutlet id | externalNibController |
| A GDExternalNibController. | |
The GDBaseObject is a base object in GDKit that contains methods and properties you'll always be using.
| - (id) initWithGD: | (id) | _gd |
Init this object with a GDDocument or GDApplicationController.
This can be used for true alloc/init combinations.
| _gd | A GDDocument or GDApplicationController. |
| - (void) lazyInit |
A hook you can override to do some lazy initialization.
This is called last after any lazyInitWith(...) method is called.
| - (void) lazyInitWithGD: | (id) | _gd |
Lazy init this object with a GDDocument or GDApplicationController.
This just sets the "gd" property.
| _gd | A GDDocument or GDApplicationController. |