- Inherits From:
- NSObject
- Declared In:
- MCPModel.h
Getting the shared instance :Life cycle : only registering and unregistering with the notification centre.
- + getSharedModel
Callback method for the NSClassDescriptionNeededForClassNotification.
- - init
- - dealloc
- - registerDescriptionForClass:
+ (MCPModel *)getSharedModel
Instantiate the shared MCPModel (if not already done), and return it.
- (void)dealloc
Unregister to the notification centre.
- (id)init
Will just register the object for getting the NSClassDescriptionNeededForClassNotification notification.
- (void)registerDescriptionForClass:(NSNotification *)notification
Callback method for the NSClassDescriptionNeededForClassNotification.