MOViewControllerClassLoader


Abstract

Protocol defining API for MOViewController to request unknown controller classes to be loaded.

Discussion

Protocol defining API for MOViewController to request unknown controller classes to be loaded. See the documentation for MOViewController's +setViewControllerClassLoader: for more information.



Methods

viewControllerClassFromString:
Callback method that MOViewController's +viewControllerWithStateDictionary:ignoringContentState: will call when it encounters a class name in a state dictionary.
stringFromViewControllerClass:
Callback method that MOViewController's -stateDictionaryIgnoringContentState: will call to get a name to archive for a given controller class.

stringFromViewControllerClass:

Callback method that MOViewController's -stateDictionaryIgnoringContentState: will call to get a name to archive for a given controller class.
- ( NSString *) stringFromViewControllerClass:
        (Class ) theClass;

Callback method that MOViewController's -stateDictionaryIgnoringContentState: will call to get a name to archive for a given controller class. See the documentation for MOViewController's +setViewControllerClassLoader: for more information.

Parameter Descriptions
theClass
The class that is being written to a state dictionary.
method result
The name to write to the state dictionary.

viewControllerClassFromString:

Callback method that MOViewController's +viewControllerWithStateDictionary:ignoringContentState: will call when it encounters a class name in a state dictionary.
- ( Class ) viewControllerClassFromString:
        (NSString *) className;

Callback method that MOViewController's +viewControllerWithStateDictionary:ignoringContentState: will call when it encounters a class name in a state dictionary. See the documentation for MOViewController's +setViewControllerClassLoader: for more information.

Parameter Descriptions
className
The name of the class that needs to be loaded.
method result
The class object.

(Last Updated 3/20/2005)